]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
22 months agoadd a changes entry 14415/head
Matthias Maier [Fri, 11 Nov 2022 23:47:10 +0000 (17:47 -0600)]
add a changes entry

22 months agoCMake: add a compile_test_executables target
Matthias Maier [Fri, 11 Nov 2022 23:37:12 +0000 (17:37 -0600)]
CMake: add a compile_test_executables target

This commit adds a top-level compile_test_executables and modifies the
ADD_TEST() macro to let it depend on all executables generated by our
DEAL_II_PICKUP_TESTS() mechanism.

This is mainly intended for user projects and works around the issue
that simultaneous calls to ninja are not reentrant, meaning when
configuring a user project with ninja one is otherwise limited to run
tests in serial.

22 months agoMerge pull request #14396 from drwells/add-sparsity-pattern-base
Martin Kronbichler [Fri, 11 Nov 2022 07:45:18 +0000 (08:45 +0100)]
Merge pull request #14396 from drwells/add-sparsity-pattern-base

(Dynamic)SparsityPattern: inherit from SparsityPatternBase.

22 months agoMerge pull request #14409 from bangerth/x-1
Daniel Arndt [Thu, 10 Nov 2022 23:02:34 +0000 (18:02 -0500)]
Merge pull request #14409 from bangerth/x-1

22 months agoMerge pull request #14410 from bangerth/x-3
David Wells [Thu, 10 Nov 2022 22:55:12 +0000 (17:55 -0500)]
Merge pull request #14410 from bangerth/x-3

Remove comments that don't actually explain anything.

22 months agoRemove comments that don't actually explain anything. 14410/head
Wolfgang Bangerth [Thu, 10 Nov 2022 18:46:22 +0000 (11:46 -0700)]
Remove comments that don't actually explain anything.

22 months agoDo not mark functions in anonymous namespaces as 'static'. 14409/head
Wolfgang Bangerth [Thu, 10 Nov 2022 18:40:43 +0000 (11:40 -0700)]
Do not mark functions in anonymous namespaces as 'static'.

22 months agoMerge pull request #14407 from bangerth/doc-3
David Wells [Thu, 10 Nov 2022 03:03:41 +0000 (22:03 -0500)]
Merge pull request #14407 from bangerth/doc-3

Add a documentation note.

22 months agoMerge pull request #14408 from bangerth/doc-2
David Wells [Thu, 10 Nov 2022 03:03:12 +0000 (22:03 -0500)]
Merge pull request #14408 from bangerth/doc-2

Fix a mistake in the documentation.

22 months agoFix a mistake in the documentation. 14408/head
Wolfgang Bangerth [Thu, 10 Nov 2022 00:20:17 +0000 (17:20 -0700)]
Fix a mistake in the documentation.

22 months agoAdd a documentation note. 14407/head
Wolfgang Bangerth [Thu, 10 Nov 2022 00:22:52 +0000 (17:22 -0700)]
Add a documentation note.

22 months agoMerge pull request #14397 from drwells/cleanup-bsp
Martin Kronbichler [Wed, 9 Nov 2022 09:11:41 +0000 (10:11 +0100)]
Merge pull request #14397 from drwells/cleanup-bsp

Cleanup BSP

22 months agoMerge pull request #14404 from drwells/update-cuda-tester-backports
Martin Kronbichler [Wed, 9 Nov 2022 09:10:00 +0000 (10:10 +0100)]
Merge pull request #14404 from drwells/update-cuda-tester-backports

CI: Update backports.

22 months agoMerge pull request #14402 from bangerth/vtu
Martin Kronbichler [Wed, 9 Nov 2022 09:09:39 +0000 (10:09 +0100)]
Merge pull request #14402 from bangerth/vtu

Refactor compressing arrays for VTU output.

22 months agoCI: Update backports. 14404/head
David Wells [Tue, 8 Nov 2022 22:52:48 +0000 (17:52 -0500)]
CI: Update backports.

We may as well use the most recent dependency backports.

22 months agoMerge pull request #14401 from bangerth/doc-3
Daniel Arndt [Tue, 8 Nov 2022 19:32:39 +0000 (14:32 -0500)]
Merge pull request #14401 from bangerth/doc-3

22 months agoRefactor compressing arrays for VTU output. 14402/head
Wolfgang Bangerth [Tue, 8 Nov 2022 17:26:14 +0000 (10:26 -0700)]
Refactor compressing arrays for VTU output.

22 months agoMinor fix to aid understand what a sentence means. 14401/head
Wolfgang Bangerth [Tue, 8 Nov 2022 15:53:48 +0000 (08:53 -0700)]
Minor fix to aid understand what a sentence means.

22 months agoAdd BlockSparsityPatternBase::memory_consumption(). 14397/head
David Wells [Sun, 30 Oct 2022 00:59:46 +0000 (20:59 -0400)]
Add BlockSparsityPatternBase::memory_consumption().

None of the inheriting classes add any class members so this should be here
instead of in BlockSparsityPattern.

22 months agoBlockSparsityPatternBase: Convert rows/cols to block_rows/block_cols.
David Wells [Sun, 30 Oct 2022 00:48:33 +0000 (20:48 -0400)]
BlockSparsityPatternBase: Convert rows/cols to block_rows/block_cols.

22 months agoMerge pull request #14323 from mschreter/mca_merge_duplicates
Martin Kronbichler [Sun, 6 Nov 2022 19:26:32 +0000 (20:26 +0100)]
Merge pull request #14323 from mschreter/mca_merge_duplicates

GridTools::MarchingCubeAlgorithm: merge duplicate vertices in process()

22 months agoMerge pull request #14395 from kronbichler/warning_2
David Wells [Sun, 6 Nov 2022 12:52:48 +0000 (07:52 -0500)]
Merge pull request #14395 from kronbichler/warning_2

Fix a warning regarding unused variable

22 months agoBlockSparsityPatternBase: Refactor some row number checking.
David Wells [Sun, 30 Oct 2022 00:18:39 +0000 (20:18 -0400)]
BlockSparsityPatternBase: Refactor some row number checking.

22 months agoBlockSparsityPatternBase: C++11 cleanups.
David Wells [Sat, 29 Oct 2022 23:44:39 +0000 (19:44 -0400)]
BlockSparsityPatternBase: C++11 cleanups.

22 months ago(Dynamic)SparsityPattern: inherit from SparsityPatternBase. 14396/head
David Wells [Thu, 13 Oct 2022 17:58:34 +0000 (13:58 -0400)]
(Dynamic)SparsityPattern: inherit from SparsityPatternBase.

22 months agoFix a warning regarding unused variable 14395/head
Martin Kronbichler [Sun, 6 Nov 2022 10:18:08 +0000 (11:18 +0100)]
Fix a warning regarding unused variable

22 months agoMerge pull request #14393 from marcfehling/doc-hpref
David Wells [Sat, 5 Nov 2022 14:11:18 +0000 (10:11 -0400)]
Merge pull request #14393 from marcfehling/doc-hpref

Add reference to dissertation in hp::Refinement namespace.

22 months agoMerge pull request #14352 from peterrum/SolverBelos
Martin Kronbichler [Sat, 5 Nov 2022 13:03:44 +0000 (14:03 +0100)]
Merge pull request #14352 from peterrum/SolverBelos

Add TrilinosWrappers::SolverBelos

22 months agoMerge pull request #14355 from masterleinad/update_gh_ci_20.04
Martin Kronbichler [Sat, 5 Nov 2022 13:01:24 +0000 (14:01 +0100)]
Merge pull request #14355 from masterleinad/update_gh_ci_20.04

Use Ubuntu 20.04 in GitHub actions

22 months agoMerge pull request #14388 from bangerth/ca
Martin Kronbichler [Sat, 5 Nov 2022 12:55:42 +0000 (13:55 +0100)]
Merge pull request #14388 from bangerth/ca

Add to the documentation of the ConsensusAlgorithms functions.

22 months agoMerge pull request #14328 from peterrum/gc_embedded_partitioner
Peter Munch [Sat, 5 Nov 2022 10:57:05 +0000 (11:57 +0100)]
Merge pull request #14328 from peterrum/gc_embedded_partitioner

Global coarsening: introduce embedded partitioner

22 months agoAdd reference to dissertation in hp::Refinement namespace. 14393/head
Marc Fehling [Fri, 4 Nov 2022 17:55:17 +0000 (11:55 -0600)]
Add reference to dissertation in hp::Refinement namespace.

22 months agoGlobal coarsening: introduce embedded partitioner 14328/head
Peter Munch [Sun, 2 Oct 2022 10:20:08 +0000 (12:20 +0200)]
Global coarsening: introduce embedded partitioner

22 months agoMerge pull request #14394 from tjhei/kelly_typos
Wolfgang Bangerth [Fri, 4 Nov 2022 21:28:37 +0000 (15:28 -0600)]
Merge pull request #14394 from tjhei/kelly_typos

minor doc fixes for KellyEstimator

22 months agominor doc fixes for KellyEstimator 14394/head
Timo Heister [Fri, 4 Nov 2022 19:08:18 +0000 (15:08 -0400)]
minor doc fixes for KellyEstimator

22 months agoAdd to the documentation of the ConsensusAlgorithms functions. 14388/head
Wolfgang Bangerth [Wed, 2 Nov 2022 23:11:34 +0000 (17:11 -0600)]
Add to the documentation of the ConsensusAlgorithms functions.

22 months agoMerge pull request #14364 from gassmoeller/catch_exceptions_in_ConsensusAlgorithm
Wolfgang Bangerth [Fri, 4 Nov 2022 16:19:31 +0000 (10:19 -0600)]
Merge pull request #14364 from gassmoeller/catch_exceptions_in_ConsensusAlgorithm

Catch exceptions in consensus algorithm

22 months agoMerge pull request #14385 from peterrum/hn_iso_q1
Martin Kronbichler [Thu, 3 Nov 2022 14:18:10 +0000 (15:18 +0100)]
Merge pull request #14385 from peterrum/hn_iso_q1

Fast hanging-node algorithm for FE_Q_iso_Q1

22 months agoMerge pull request #14386 from sebproell/laplace-op-vectorization
Martin Kronbichler [Thu, 3 Nov 2022 14:17:35 +0000 (15:17 +0100)]
Merge pull request #14386 from sebproell/laplace-op-vectorization

MatrixFreeOperators::LaplaceOperator vectorization width 1

22 months agoAdd exception handling to ConsensusAlgorithm 14364/head
Rene Gassmoeller [Tue, 18 Oct 2022 14:55:01 +0000 (10:55 -0400)]
Add exception handling to ConsensusAlgorithm

22 months agoMerge pull request #14389 from bangerth/ca-2
David Wells [Thu, 3 Nov 2022 02:35:15 +0000 (22:35 -0400)]
Merge pull request #14389 from bangerth/ca-2

Document a restriction on ConsensusAlgorithms::serial().

22 months agoDocument a restriction on ConsensusAlgorithms::serial(). 14389/head
Wolfgang Bangerth [Wed, 2 Nov 2022 23:15:08 +0000 (17:15 -0600)]
Document a restriction on ConsensusAlgorithms::serial().

22 months agoMerge pull request #14371 from peterrum/FDM_N_ROWS_MAX
Martin Kronbichler [Wed, 2 Nov 2022 11:14:30 +0000 (12:14 +0100)]
Merge pull request #14371 from peterrum/FDM_N_ROWS_MAX

Generalize precompilation of TensorProductMatrixSymmetricSum

22 months agoMatrixFreeOperators::LaplaceOperator vectorization width 1 14386/head
Sebastian Proell [Wed, 2 Nov 2022 10:55:36 +0000 (11:55 +0100)]
MatrixFreeOperators::LaplaceOperator vectorization width 1

22 months agoMerge pull request #14383 from kronbichler/fix_shape_data
Peter Munch [Tue, 1 Nov 2022 21:36:47 +0000 (22:36 +0100)]
Merge pull request #14383 from kronbichler/fix_shape_data

ShapeInfo: Implement evaluation of derivatives on faces

22 months agoFast hanging-node algorithm for FE_Q_iso_Q1 14385/head
Peter Munch [Tue, 1 Nov 2022 21:22:37 +0000 (22:22 +0100)]
Fast hanging-node algorithm for FE_Q_iso_Q1

22 months agoMerge pull request #14366 from peterrum/fdm_va
Martin Kronbichler [Tue, 1 Nov 2022 20:52:56 +0000 (21:52 +0100)]
Merge pull request #14366 from peterrum/fdm_va

TensorProductMatrix: with arbitrary number of lanes

22 months agoGeneralize precompilation of TensorProductMatrixSymmetricSum 14371/head
Peter Munch [Sun, 23 Oct 2022 12:54:07 +0000 (14:54 +0200)]
Generalize precompilation of TensorProductMatrixSymmetricSum

22 months agoShapeInfo: Implement evaluation of derivatives on faces 14383/head
Martin Kronbichler [Tue, 1 Nov 2022 16:31:01 +0000 (17:31 +0100)]
ShapeInfo: Implement evaluation of derivatives on faces

22 months agoMerge pull request #14356 from gassmoeller/avoid_deadlock_in_mutex
David Wells [Tue, 1 Nov 2022 13:20:53 +0000 (09:20 -0400)]
Merge pull request #14356 from gassmoeller/avoid_deadlock_in_mutex

Report error and abort in CollectiveMutex during stack unwinding

22 months agoMerge pull request #14380 from luca-heltai/fe_immersed_surface_values_MappingFEField
David Wells [Tue, 1 Nov 2022 12:49:23 +0000 (08:49 -0400)]
Merge pull request #14380 from luca-heltai/fe_immersed_surface_values_MappingFEField

Allow FEImmersedSurfaceValues to take a MappingFEField

22 months agoAllow construction of FEImmersedSurfaceValues with a MappingFEField 14380/head
Marco Feder [Sat, 29 Oct 2022 16:51:30 +0000 (18:51 +0200)]
Allow construction of FEImmersedSurfaceValues with a MappingFEField

22 months agoMerge pull request #14381 from drwells/grid-in-unv-exception
Daniel Arndt [Mon, 31 Oct 2022 18:49:01 +0000 (14:49 -0400)]
Merge pull request #14381 from drwells/grid-in-unv-exception

22 months agoMake the error message for non-integer IDs in UNV files clearer. 14381/head
David Wells [Sat, 29 Oct 2022 17:18:21 +0000 (13:18 -0400)]
Make the error message for non-integer IDs in UNV files clearer.

22 months agoMerge pull request #14378 from marcfehling/warnings
Timo Heister [Sat, 29 Oct 2022 19:55:54 +0000 (15:55 -0400)]
Merge pull request #14378 from marcfehling/warnings

Fix some warnings.

22 months agoMerge pull request #14376 from marcfehling/feindex-changelog
David Wells [Sat, 29 Oct 2022 19:01:50 +0000 (15:01 -0400)]
Merge pull request #14376 from marcfehling/feindex-changelog

fe_index: added changelog.

22 months agoFix some warnings. 14378/head
Marc Fehling [Fri, 28 Oct 2022 20:16:13 +0000 (14:16 -0600)]
Fix some warnings.

22 months agofe_index: added changelog. 14376/head
Marc Fehling [Thu, 27 Oct 2022 21:07:26 +0000 (15:07 -0600)]
fe_index: added changelog.

22 months agoTry only excluding CMakeLists.txt 14355/head
Daniel Arndt [Tue, 25 Oct 2022 22:29:42 +0000 (18:29 -0400)]
Try only excluding CMakeLists.txt

22 months agoAdd comment for suppressions
Daniel Arndt [Tue, 25 Oct 2022 22:28:31 +0000 (18:28 -0400)]
Add comment for suppressions

22 months agoMerge pull request #14374 from bangerth/mphtxt
David Wells [Tue, 25 Oct 2022 12:44:09 +0000 (08:44 -0400)]
Merge pull request #14374 from bangerth/mphtxt

Fix dimension selection in COMSOL mphtxt reader.

22 months agoReview changes 14352/head
Peter Munch [Tue, 25 Oct 2022 11:14:55 +0000 (13:14 +0200)]
Review changes

22 months agoMerge pull request #14225 from marcfehling/feindex-dofs
Wolfgang Bangerth [Mon, 24 Oct 2022 15:57:35 +0000 (09:57 -0600)]
Merge pull request #14225 from marcfehling/feindex-dofs

Adjust interface in 'dofs' folder to new datatype 'types::fe_index'.

22 months agoFix dimension selection in COMSOL mphtxt reader. 14374/head
Wolfgang Bangerth [Mon, 24 Oct 2022 15:33:17 +0000 (09:33 -0600)]
Fix dimension selection in COMSOL mphtxt reader.

22 months agoMerge pull request #14369 from peterrum/ExcSourceEqualsDestination
Peter Munch [Sun, 23 Oct 2022 19:08:20 +0000 (21:08 +0200)]
Merge pull request #14369 from peterrum/ExcSourceEqualsDestination

Fix assert message

22 months agoFix assert message 14369/head
Peter Munch [Sun, 23 Oct 2022 07:36:31 +0000 (09:36 +0200)]
Fix assert message

23 months agoTensorProductMatrix: with arbitrary number of lanes 14366/head
Peter Munch [Fri, 21 Oct 2022 07:29:57 +0000 (09:29 +0200)]
TensorProductMatrix: with arbitrary number of lanes

23 months agoAllow doxygen warnings including 'Inheritance graph'
Daniel Arndt [Thu, 20 Oct 2022 14:21:09 +0000 (10:21 -0400)]
Allow doxygen warnings including 'Inheritance graph'

23 months agoAbort when exception is uncaught. 14356/head
Rene Gassmoeller [Thu, 20 Oct 2022 13:56:37 +0000 (09:56 -0400)]
Abort when exception is uncaught.

23 months agoCopy documentation from HelperBase::reset() manually
Daniel Arndt [Thu, 20 Oct 2022 13:32:23 +0000 (09:32 -0400)]
Copy documentation from HelperBase::reset() manually

23 months agoMerge pull request #14349 from peterrum/classical_gram_schmidt
Martin Kronbichler [Thu, 20 Oct 2022 08:53:02 +0000 (10:53 +0200)]
Merge pull request #14349 from peterrum/classical_gram_schmidt

SolverGMRES: add classical Gram-Schmidt

23 months agoMerge pull request #14357 from gassmoeller/fix_typo_consensus_algorithm
Wolfgang Bangerth [Wed, 19 Oct 2022 21:46:31 +0000 (15:46 -0600)]
Merge pull request #14357 from gassmoeller/fix_typo_consensus_algorithm

Fix two typos in ConsensusAlgorithm::NBX

23 months agoSolverGMRES: add classical Gram-Schmidt 14349/head
Peter Munch [Sat, 15 Oct 2022 11:00:51 +0000 (13:00 +0200)]
SolverGMRES: add classical Gram-Schmidt

23 months agoWork on parameters
Peter Munch [Wed, 19 Oct 2022 20:10:11 +0000 (22:10 +0200)]
Work on parameters

23 months agoFix more
Daniel Arndt [Tue, 18 Oct 2022 22:32:05 +0000 (18:32 -0400)]
Fix more

23 months agoBump distributed serialization version from 4 to 5. 14225/head
Marc Fehling [Tue, 18 Oct 2022 19:38:10 +0000 (13:38 -0600)]
Bump distributed serialization version from 4 to 5.

We changed the datatype of serialized fe indices.

23 months agoApply suggestions from code review.
Marc Fehling [Thu, 6 Oct 2022 17:54:42 +0000 (11:54 -0600)]
Apply suggestions from code review.

23 months agoFix a couple more
Daniel Arndt [Tue, 18 Oct 2022 13:43:04 +0000 (09:43 -0400)]
Fix a couple more

23 months agoFix typos in ConsensusAlgorithm::NBX 14357/head
Rene Gassmoeller [Mon, 17 Oct 2022 19:35:43 +0000 (15:35 -0400)]
Fix typos in ConsensusAlgorithm::NBX

23 months agoRemove communication during stack unwinding.
Rene Gassmoeller [Mon, 17 Oct 2022 19:17:18 +0000 (15:17 -0400)]
Remove communication during stack unwinding.

23 months agoFix a couple doxygen issues
Daniel Arndt [Mon, 17 Oct 2022 18:37:59 +0000 (14:37 -0400)]
Fix a couple doxygen issues

23 months agoMerge pull request #14354 from peterrum/va_mixed_load_store
Peter Munch [Mon, 17 Oct 2022 17:46:18 +0000 (19:46 +0200)]
Merge pull request #14354 from peterrum/va_mixed_load_store

VectorizedArray: mixed load/store

23 months agoInstall cuda-11.0
Daniel Arndt [Mon, 17 Oct 2022 15:09:07 +0000 (11:09 -0400)]
Install cuda-11.0

23 months agoUse Ubuntu 20.04 in GitHub actions
Daniel Arndt [Mon, 17 Oct 2022 14:58:21 +0000 (10:58 -0400)]
Use Ubuntu 20.04 in GitHub actions

23 months agoVectorizedArray: mixed load/store 14354/head
Peter Munch [Mon, 17 Oct 2022 14:16:15 +0000 (16:16 +0200)]
VectorizedArray: mixed load/store

23 months agoAdd TrilinosWrappers::SolverBelos
Peter Munch [Mon, 17 Oct 2022 07:50:59 +0000 (09:50 +0200)]
Add TrilinosWrappers::SolverBelos

23 months agoMerge pull request #14350 from peterrum/iterated_modified_gram_schmidt
Peter Munch [Fri, 14 Oct 2022 21:01:34 +0000 (23:01 +0200)]
Merge pull request #14350 from peterrum/iterated_modified_gram_schmidt

Refactor SolverGMRES::modified_gram_schmidt

23 months agoRefactor SolverGMRES::modified_gram_schmidt 14350/head
Peter Munch [Fri, 14 Oct 2022 14:01:31 +0000 (16:01 +0200)]
Refactor SolverGMRES::modified_gram_schmidt

23 months agoMerge pull request #14348 from drwells/n-face-permutations
Daniel Arndt [Thu, 13 Oct 2022 17:33:02 +0000 (13:33 -0400)]
Merge pull request #14348 from drwells/n-face-permutations

23 months agoMerge pull request #14339 from bangerth/dox-2
Marc Fehling [Thu, 13 Oct 2022 15:53:15 +0000 (17:53 +0200)]
Merge pull request #14339 from bangerth/dox-2

Fix some doxygen problems.

23 months agoFix some doxygen problems. 14339/head
Wolfgang Bangerth [Wed, 5 Oct 2022 15:24:10 +0000 (09:24 -0600)]
Fix some doxygen problems.

23 months agoMerge pull request #14343 from sebproell/mf-pre-post-loop
Peter Munch [Wed, 12 Oct 2022 21:33:21 +0000 (23:33 +0200)]
Merge pull request #14343 from sebproell/mf-pre-post-loop

MatrixFree pre and post operation for loop()

23 months agoImplement ReferenceCell::n_face_orientations(). 14348/head
David Wells [Wed, 12 Oct 2022 19:09:33 +0000 (15:09 -0400)]
Implement ReferenceCell::n_face_orientations().

This encodes some previously hard-coded values in FESystem.

23 months agoMerge pull request #14344 from sebproell/mf-assert-dst-not-ghosted
Daniel Arndt [Wed, 12 Oct 2022 14:47:32 +0000 (10:47 -0400)]
Merge pull request #14344 from sebproell/mf-assert-dst-not-ghosted

23 months agoMerge pull request #14347 from bangerth/semicolon
Luca Heltai [Wed, 12 Oct 2022 09:32:12 +0000 (11:32 +0200)]
Merge pull request #14347 from bangerth/semicolon

Remove an unnecessary semicolon.

23 months agoRemove an unnecessary semicolon. 14347/head
Wolfgang Bangerth [Wed, 12 Oct 2022 05:41:15 +0000 (23:41 -0600)]
Remove an unnecessary semicolon.

23 months agoDoFInfo: Setup pre and post list for faces 14343/head
Sebastian Proell [Tue, 11 Oct 2022 15:00:54 +0000 (17:00 +0200)]
DoFInfo: Setup pre and post list for faces

23 months agoMatrixFree pre and post operation for loop()
Sebastian Proell [Sat, 8 Oct 2022 11:25:12 +0000 (13:25 +0200)]
MatrixFree pre and post operation for loop()

23 months agoMerge pull request #14340 from sebproell/field-transfer-ghosted
Bruno Turcksin [Tue, 11 Oct 2022 15:07:41 +0000 (11:07 -0400)]
Merge pull request #14340 from sebproell/field-transfer-ghosted

23 months agoMatrixFree: add early check for ghosted dst vector 14344/head
Sebastian Proell [Sat, 8 Oct 2022 15:19:18 +0000 (17:19 +0200)]
MatrixFree: add early check for ghosted dst vector


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.