]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
8 years agoMerge pull request #2471 from bangerth/better-unit_tangentials-data-structure
David Wells [Thu, 7 Apr 2016 12:51:45 +0000 (08:51 -0400)]
Merge pull request #2471 from bangerth/better-unit_tangentials-data-structure

Better unit tangentials data structure

8 years agoUse a fixed size data structure for MappingFEField::InternalData::unit_tangentials. 2471/head
Wolfgang Bangerth [Mon, 4 Apr 2016 02:31:33 +0000 (21:31 -0500)]
Use a fixed size data structure for MappingFEField::InternalData::unit_tangentials.

8 years agoUse a fixed size data structure for MappingQGeneric::InternalData::unit_tangentials.
Wolfgang Bangerth [Sun, 3 Apr 2016 15:07:09 +0000 (10:07 -0500)]
Use a fixed size data structure for MappingQGeneric::InternalData::unit_tangentials.

8 years agoMerge pull request #2442 from danshapero/subscriptor-move-ctor
Wolfgang Bangerth [Thu, 7 Apr 2016 02:18:43 +0000 (21:18 -0500)]
Merge pull request #2442 from danshapero/subscriptor-move-ctor

added move constructor to Subscriptor

8 years agoRemoved unnecessary cleanup in subscriptor dtor/move ctor 2442/head
danshapero [Wed, 6 Apr 2016 21:39:30 +0000 (14:39 -0700)]
Removed unnecessary cleanup in subscriptor dtor/move ctor

8 years agoMerge pull request #2472 from bangerth/fix-warnings-6
Bruno Turcksin [Wed, 6 Apr 2016 21:14:51 +0000 (16:14 -0500)]
Merge pull request #2472 from bangerth/fix-warnings-6

Avoid a warning.

8 years agoMerge pull request #2470 from tjhei/8_4_1_changelog
Wolfgang Bangerth [Wed, 6 Apr 2016 21:11:53 +0000 (16:11 -0500)]
Merge pull request #2470 from tjhei/8_4_1_changelog

update 8.4.1 changelog

8 years agoAvoid a warning. 2472/head
Wolfgang Bangerth [Wed, 6 Apr 2016 21:07:49 +0000 (16:07 -0500)]
Avoid a warning.

This fixes a warning introduced in #2449. There, @drwells had asked me
why I wrote
        for (std::size_t i=0; i!=N; ++i)
when I could have written
        for (std::size_t i=0; i<N; ++i)
I didn't remember and changed it to the latter, which did not warn on
my laptop but does now on the compute server. The reason is that N is
of type std::size_t, which turns out to be unsigned, and so warns if
we happen to have N==0. This patch fixes the issue.

8 years agoupdate 8.4.1 changelog 2470/head
Timo Heister [Wed, 6 Apr 2016 20:37:30 +0000 (22:37 +0200)]
update 8.4.1 changelog

8 years agoMerge pull request #2449 from bangerth/more-memory-consumption
David Wells [Wed, 6 Apr 2016 19:41:46 +0000 (15:41 -0400)]
Merge pull request #2449 from bangerth/more-memory-consumption

Add memory_consumption() for std_cxx11::array objects.

8 years agoFactored out Subscriptor error checking into member function
danshapero [Wed, 6 Apr 2016 16:58:10 +0000 (09:58 -0700)]
Factored out Subscriptor error checking into member function

8 years agoMerge pull request #2467 from tjhei/pr2444
Wolfgang Bangerth [Wed, 6 Apr 2016 11:12:58 +0000 (06:12 -0500)]
Merge pull request #2467 from tjhei/pr2444

fix doxygen @name wrapping

8 years agoteach wrapcomments.py about @name 2467/head
Timo Heister [Wed, 6 Apr 2016 09:47:15 +0000 (11:47 +0200)]
teach wrapcomments.py about @name

8 years agofix wrong wrapping
Timo Heister [Wed, 6 Apr 2016 09:46:59 +0000 (11:46 +0200)]
fix wrong wrapping

8 years agoMerge pull request #2444 from bangerth/update-docs-55
Timo Heister [Wed, 6 Apr 2016 09:48:00 +0000 (05:48 -0400)]
Merge pull request #2444 from bangerth/update-docs-55

Fix doxygen markup.

8 years agoMerge pull request #2464 from tjhei/cone_bdry_bug
Wolfgang Bangerth [Tue, 5 Apr 2016 17:19:15 +0000 (12:19 -0500)]
Merge pull request #2464 from tjhei/cone_bdry_bug

fix bug in ConeBoundary::get_normals_at_vertices

8 years agofix bug in ConeBoundary::get_normals_at_vertices 2464/head
Timo Heister [Tue, 5 Apr 2016 16:35:54 +0000 (18:35 +0200)]
fix bug in ConeBoundary::get_normals_at_vertices

8 years agoMerge pull request #2463 from Rombur/fix_clang_no_cxx11
Wolfgang Bangerth [Tue, 5 Apr 2016 14:02:26 +0000 (09:02 -0500)]
Merge pull request #2463 from Rombur/fix_clang_no_cxx11

Fix to make compile with clang-no-c++11.

8 years agoFix to make compile with clang-no-c++11. 2463/head
Bruno Turcksin [Tue, 5 Apr 2016 13:50:57 +0000 (09:50 -0400)]
Fix to make compile with clang-no-c++11.

8 years agoMerge pull request #2461 from bangerth/fix-warning-3
Timo Heister [Tue, 5 Apr 2016 12:15:05 +0000 (08:15 -0400)]
Merge pull request #2461 from bangerth/fix-warning-3

Avoid warnings about unused variables.

8 years agoAvoid warnings about unused variables. 2461/head
Wolfgang Bangerth [Mon, 4 Apr 2016 21:18:50 +0000 (16:18 -0500)]
Avoid warnings about unused variables.

8 years agoMerge pull request #2456 from tjhei/set_all_manifold_empty_error
Wolfgang Bangerth [Mon, 4 Apr 2016 17:38:38 +0000 (12:38 -0500)]
Merge pull request #2456 from tjhei/set_all_manifold_empty_error

confusing set_all_manifold* errors if empty

8 years agoMerge pull request #2457 from samiiali/periodic_neighbor_fix
Wolfgang Bangerth [Mon, 4 Apr 2016 17:36:57 +0000 (12:36 -0500)]
Merge pull request #2457 from samiiali/periodic_neighbor_fix

Removing unnecessary `typedef` in `tria_accessor.cc` and fixing documentation

8 years agoconfusing set_all_manifold* errors if empty 2456/head
Timo Heister [Mon, 4 Apr 2016 16:55:50 +0000 (12:55 -0400)]
confusing set_all_manifold* errors if empty

The error messages for set_all_manifold_ids* are confusing if the mesh
is empty:

An error occurred in line <10760> of file </ssd/deal-
git/source/grid/tria.cc> in function
    dealii::Triangulation<dim, spacedim>::raw_quad_iterator
dealii::Triangulation<dim, spacedim>::begin_raw_quad(unsigned int) const
[with int dim = 2, int spacedim = 2, dealii::Triangulation<dim,
spacedim>::raw_quad_iterator =
dealii::TriaRawIterator<dealii::CellAccessor<2, 2> >]
The violated condition was:
    level<n_global_levels() || level<levels.size()
The name and call sequence of the exception was:
    ExcInvalidLevel(level)
Additional Information:
The given level 0 is not in the valid range!

Fix that.

8 years agoRemoving some unnecessary typedef 2457/head
Ali Samii [Mon, 4 Apr 2016 16:44:33 +0000 (11:44 -0500)]
Removing some unnecessary typedef

8 years agoMerge pull request #2455 from davydden/step36_doc_typo
Wolfgang Bangerth [Mon, 4 Apr 2016 15:52:45 +0000 (10:52 -0500)]
Merge pull request #2455 from davydden/step36_doc_typo

fix a typo in step-36 documentation

8 years agofix a typo in step-36 documentation 2455/head
Denis Davydov [Mon, 4 Apr 2016 15:13:17 +0000 (17:13 +0200)]
fix a typo in step-36 documentation

8 years agoAdd a test, inspired by @drwells. 2449/head
Wolfgang Bangerth [Mon, 4 Apr 2016 02:43:37 +0000 (21:43 -0500)]
Add a test, inspired by @drwells.

8 years agoMerge pull request #2448 from kronbichler/master
Bruno Turcksin [Mon, 4 Apr 2016 14:37:06 +0000 (09:37 -0500)]
Merge pull request #2448 from kronbichler/master

Fix mg transfer for for minlevel > 0

8 years agoMerge pull request #2453 from tjhei/stray_typename
Bruno Turcksin [Mon, 4 Apr 2016 13:34:07 +0000 (08:34 -0500)]
Merge pull request #2453 from tjhei/stray_typename

Stray typename

8 years agomore typename 2453/head
Timo Heister [Mon, 4 Apr 2016 13:04:32 +0000 (15:04 +0200)]
more typename

8 years agoremove typename
Timo Heister [Mon, 4 Apr 2016 13:00:01 +0000 (15:00 +0200)]
remove typename

8 years agoremove stray typename
Timo Heister [Mon, 4 Apr 2016 12:37:19 +0000 (08:37 -0400)]
remove stray typename

This is a compiler error with gcc 4.4

8 years agoAdd memory_consumption() for std_cxx11::array objects.
Wolfgang Bangerth [Sun, 3 Apr 2016 15:05:27 +0000 (10:05 -0500)]
Add memory_consumption() for std_cxx11::array objects.

8 years agoMerge pull request #2451 from masterleinad/fix_exceptions
Wolfgang Bangerth [Mon, 4 Apr 2016 00:15:45 +0000 (19:15 -0500)]
Merge pull request #2451 from masterleinad/fix_exceptions

Fix exceptions if we are not in namespace dealii

8 years agoFix Exceptions if we are not in namespace dealii 2451/head
Daniel Arndt [Sun, 3 Apr 2016 16:48:41 +0000 (18:48 +0200)]
Fix Exceptions if we are not in namespace dealii

8 years agoMerge pull request #2450 from bangerth/fix-2445
Denis Davydov [Sun, 3 Apr 2016 16:25:04 +0000 (18:25 +0200)]
Merge pull request #2450 from bangerth/fix-2445

Fix a failing compilation.

8 years agoFix a failing compilation. 2450/head
Wolfgang Bangerth [Sun, 3 Apr 2016 15:22:32 +0000 (10:22 -0500)]
Fix a failing compilation.

8 years agoMention change 2448/head
Martin Kronbichler [Sun, 3 Apr 2016 11:11:43 +0000 (13:11 +0200)]
Mention change

8 years agoTests for minlevel>0.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:26 +0000 (13:11 +0200)]
Tests for minlevel>0.

8 years agoFix mg transfer for minlevel > 0.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:12 +0000 (13:11 +0200)]
Fix mg transfer for minlevel > 0.

8 years agoMerge pull request #2446 from tjhei/test_console
Martin Kronbichler [Sun, 3 Apr 2016 10:52:35 +0000 (12:52 +0200)]
Merge pull request #2446 from tjhei/test_console

tests: restore option to print to console with deallog

8 years agotests: restore option to print to console with deallog 2446/head
Timo Heister [Sun, 3 Apr 2016 08:35:50 +0000 (10:35 +0200)]
tests: restore option to print to console with deallog

The recent change to the default of deallog.depth_console (now 0) broke
the bool console parameter to the various init() functions used in
tests. Restore this feature.

8 years agoFix doxygen markup. 2444/head
Wolfgang Bangerth [Sat, 2 Apr 2016 18:37:45 +0000 (13:37 -0500)]
Fix doxygen markup.

8 years agoIndentation fix
danshapero [Fri, 1 Apr 2016 14:39:22 +0000 (07:39 -0700)]
Indentation fix

8 years agoMerge pull request #2441 from masterleinad/fix_accessor_warning
Bruno Turcksin [Fri, 1 Apr 2016 14:17:28 +0000 (09:17 -0500)]
Merge pull request #2441 from masterleinad/fix_accessor_warning

Fix warning in tria_accessor.cc

8 years agoFix warning in tria_accessor.cc 2441/head
Daniel Arndt [Fri, 1 Apr 2016 11:55:20 +0000 (13:55 +0200)]
Fix warning in tria_accessor.cc

8 years agoMerge pull request #2395 from masterleinad/periodic_neighbor
Martin Kronbichler [Fri, 1 Apr 2016 06:18:41 +0000 (08:18 +0200)]
Merge pull request #2395 from masterleinad/periodic_neighbor

Periodic neighbors

8 years agoTest of SparseMatrix move ctor checks that ExcInUse is thrown
danshapero [Fri, 1 Apr 2016 03:56:45 +0000 (20:56 -0700)]
Test of SparseMatrix move ctor checks that ExcInUse is thrown

8 years agoSparseMatrix move ctor now moves its parent Subscriptor
danshapero [Fri, 1 Apr 2016 03:56:15 +0000 (20:56 -0700)]
SparseMatrix move ctor now moves its parent Subscriptor

8 years agoAdded move constructor to Subscriptor
danshapero [Fri, 1 Apr 2016 03:53:55 +0000 (20:53 -0700)]
Added move constructor to Subscriptor

A subscriptor can only be moved if there are no other objects
subscribing to it. This condition is already checked in a sensible
way in the destructor for Subscriptor, so rather than add a bunch
of boilerplate, the move constructor just invokes the destructor.

8 years agoFix initial lines in test output 2395/head
Daniel Arndt [Thu, 31 Mar 2016 23:52:58 +0000 (01:52 +0200)]
Fix initial lines in test output

8 years agoMerge pull request #2437 from bangerth/doc-update-54
David Wells [Thu, 31 Mar 2016 01:54:38 +0000 (21:54 -0400)]
Merge pull request #2437 from bangerth/doc-update-54

Fix signs of various terms.

8 years agoMerge pull request #2431 from davydden/branch_petscscalar_complex_silence_tests
Wolfgang Bangerth [Wed, 30 Mar 2016 21:30:24 +0000 (16:30 -0500)]
Merge pull request #2431 from davydden/branch_petscscalar_complex_silence_tests

Branch petscscalar complex silence tests

8 years agoFix signs of various terms. 2437/head
Wolfgang Bangerth [Wed, 30 Mar 2016 21:03:34 +0000 (16:03 -0500)]
Fix signs of various terms.

This appears to be correct in the implementation, however.

8 years agoMerge pull request #2435 from davydden/remove_parmetis
Bruno Turcksin [Wed, 30 Mar 2016 15:04:03 +0000 (10:04 -0500)]
Merge pull request #2435 from davydden/remove_parmetis

clean-up ParMetis from CMake config system

8 years agoclean-up ParMetis from CMake config system 2435/head
Denis Davydov [Wed, 30 Mar 2016 13:44:07 +0000 (15:44 +0200)]
clean-up ParMetis from CMake config system

8 years agocleanup mpi/p4est_save_02 2431/head
Denis Davydov [Tue, 29 Mar 2016 21:29:59 +0000 (23:29 +0200)]
cleanup mpi/p4est_save_02

8 years agocleanup mpi/p4est_save_03
Denis Davydov [Tue, 29 Mar 2016 21:28:16 +0000 (23:28 +0200)]
cleanup mpi/p4est_save_03

8 years agocleanup mpi/ghost_02
Denis Davydov [Tue, 29 Mar 2016 21:25:56 +0000 (23:25 +0200)]
cleanup mpi/ghost_02

8 years agoclean-up mpi/periodicity_01
Denis Davydov [Tue, 29 Mar 2016 21:04:55 +0000 (23:04 +0200)]
clean-up mpi/periodicity_01

8 years agouse get_real_assert_zero_imag() instead of PetscRealPart()
Denis Davydov [Tue, 29 Mar 2016 21:02:58 +0000 (23:02 +0200)]
use get_real_assert_zero_imag() instead of PetscRealPart()

8 years agoenable gla tests in case of complex PETSc
Denis Davydov [Tue, 29 Mar 2016 07:07:11 +0000 (09:07 +0200)]
enable gla tests in case of complex PETSc

8 years agoextend gla/extract_subvector_to_parallel to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 07:04:43 +0000 (09:04 +0200)]
extend gla/extract_subvector_to_parallel to complex-valued PETSc

8 years agoextend gla/extract_subvector_to to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 07:03:16 +0000 (09:03 +0200)]
extend gla/extract_subvector_to to complex-valued PETSc

8 years agoextend gla/block_mat_03 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 07:00:51 +0000 (09:00 +0200)]
extend gla/block_mat_03 to complex-valued PETSc

8 years agoextend gla/block_mat_02 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 06:55:39 +0000 (08:55 +0200)]
extend gla/block_mat_02 to complex-valued PETSc

8 years agoextend gla/block_mat_01 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 06:51:00 +0000 (08:51 +0200)]
extend gla/block_mat_01 to complex-valued PETSc

8 years agoextend gla/mat_06 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 06:49:24 +0000 (08:49 +0200)]
extend gla/mat_06 to complex-valued PETSc

8 years agoextend gla/mat_05 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 06:48:19 +0000 (08:48 +0200)]
extend gla/mat_05 to complex-valued PETSc

8 years agoextend gla/mat_04 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:44:51 +0000 (07:44 +0200)]
extend gla/mat_04 to complex-valued PETSc

8 years agoextend gla/mat_03 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:41:22 +0000 (07:41 +0200)]
extend gla/mat_03 to complex-valued PETSc

8 years agoextend gla/mat_02 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:35:00 +0000 (07:35 +0200)]
extend gla/mat_02 to complex-valued PETSc

8 years agoextend gla/mat_01 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:33:03 +0000 (07:33 +0200)]
extend gla/mat_01 to complex-valued PETSc

8 years agoextend gla/block_vec_02 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:28:28 +0000 (07:28 +0200)]
extend gla/block_vec_02 to complex-valued PETSc

8 years agoextend gla/block_vec_01 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:26:46 +0000 (07:26 +0200)]
extend gla/block_vec_01 to complex-valued PETSc

8 years agoextend gla/vec_07 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:25:00 +0000 (07:25 +0200)]
extend gla/vec_07 to complex-valued PETSc

8 years agoextend gla/vec_05 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:23:39 +0000 (07:23 +0200)]
extend gla/vec_05 to complex-valued PETSc

8 years agoextend gla/vec_04 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:22:09 +0000 (07:22 +0200)]
extend gla/vec_04 to complex-valued PETSc

8 years agoextend gla/vec_02 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:20:22 +0000 (07:20 +0200)]
extend gla/vec_02 to complex-valued PETSc

8 years agoextend gla/vec_03 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:17:38 +0000 (07:17 +0200)]
extend gla/vec_03 to complex-valued PETSc

8 years agoextend gla/vec_01 to complex-valued PETSc
Denis Davydov [Tue, 29 Mar 2016 05:14:32 +0000 (07:14 +0200)]
extend gla/vec_01 to complex-valued PETSc

8 years agoadd an auxiliary function to return real part of PETSc vector element and test that...
Denis Davydov [Tue, 29 Mar 2016 05:13:46 +0000 (07:13 +0200)]
add an auxiliary function to return real part of PETSc vector element and test that imaginary part is zero

8 years agominor complex-valued related cleanup of mpi/p4est_save_0x tests
Denis Davydov [Mon, 28 Mar 2016 21:52:28 +0000 (23:52 +0200)]
minor complex-valued related cleanup of mpi/p4est_save_0x tests

8 years agomove lac/matrix_out_03 to petsc/ not to run in complex-valued case
Denis Davydov [Mon, 28 Mar 2016 21:43:31 +0000 (23:43 +0200)]
move lac/matrix_out_03 to petsc/ not to run in complex-valued case

8 years agoextra output for mpi/blockvec_01 for complex-valued case
Denis Davydov [Mon, 28 Mar 2016 21:28:13 +0000 (23:28 +0200)]
extra output for mpi/blockvec_01 for complex-valued case

8 years agoextend mpi/ghost_01 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 21:24:45 +0000 (23:24 +0200)]
extend mpi/ghost_01 to complex-valued PETSc

8 years agoextend mpi/interpolate_02 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 21:09:25 +0000 (23:09 +0200)]
extend mpi/interpolate_02 to complex-valued PETSc

8 years agopartly extend mpi/p4est_save_03 to comple-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:59:14 +0000 (22:59 +0200)]
partly extend mpi/p4est_save_03 to comple-valued PETSc

8 years agoextend mpi/step-40_direct_solver to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:54:13 +0000 (22:54 +0200)]
extend mpi/step-40_direct_solver to complex-valued PETSc

8 years agoextend mpi/condense_01 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:50:34 +0000 (22:50 +0200)]
extend mpi/condense_01 to complex-valued PETSc

8 years agoextend mpi/petsc_bug_ghost_vector_01 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:45:42 +0000 (22:45 +0200)]
extend mpi/petsc_bug_ghost_vector_01 to complex-valued PETSc

8 years agoextend mpi/step-40 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:41:55 +0000 (22:41 +0200)]
extend  mpi/step-40 to complex-valued PETSc

8 years agoextend tests/mpi/petsc_distribute_01.cc to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:30:24 +0000 (22:30 +0200)]
extend tests/mpi/petsc_distribute_01.cc to complex-valued PETSc

8 years agoextend tests/mpi/ghost_02 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 20:20:59 +0000 (22:20 +0200)]
extend tests/mpi/ghost_02 to complex-valued PETSc

8 years agopartly extend tests/mpi/p4est_save_02.cc to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 19:12:58 +0000 (21:12 +0200)]
partly extend tests/mpi/p4est_save_02.cc to complex-valued PETSc

8 years agopartly extend tests/mpi/p4est_save_04.cc to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 19:06:13 +0000 (21:06 +0200)]
partly extend tests/mpi/p4est_save_04.cc to complex-valued PETSc

8 years agoextend mpi/petsc_distribute_01_block to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 18:28:36 +0000 (20:28 +0200)]
extend mpi/petsc_distribute_01_block to complex-valued PETSc

8 years agoextend tests/mpi/periodicity_01 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 18:15:40 +0000 (20:15 +0200)]
extend tests/mpi/periodicity_01 to complex-valued PETSc

8 years agoextend tests/mpi/constraint_matrix_set_zero_01 to complex-valued PETSc
Denis Davydov [Mon, 28 Mar 2016 17:33:18 +0000 (19:33 +0200)]
extend tests/mpi/constraint_matrix_set_zero_01 to complex-valued PETSc


In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.