Posts

Canonici regolari di Sant'Agostino della Congregazione di Windesheim

Image
I canonici regolari di Sant'Agostino della Congregazione di Windesheim (in latino Congregatio Vindesemensis ) costituiscono un istituto di vita consacrata della Chiesa cattolica. I canonici regolari di questa comunità seguono la regola di sant'Agostino e pospongono al loro nome la sigla C.R.V. Indice 1 Storia 2 Statistiche 3 Note 4 Bibliografia 5 Altri progetti 6 Collegamenti esterni Storia | La congregazione venne fondata da alcuni religiosi della confraternita dei Fratelli della Vita Comune, che seguivano le regole spirituali della devotio moderna : nel 1386 fondarono un monastero a Windesheim e si costituirono in congregazione di canonici regolari, adottando la regola di sant'Agostino. La congregazione si diffuse rapidamente soprattutto nei Paesi Bassi ed in Renania. Tra i membri più celebri della congregazione vanno ricordati Johannes Vos, Johannes Busch, Jean Ruysbroeck e Tommaso da Kempis, presunto autore dell' Imitazio...

Easy instances of the coloring problem on graphs with degree at most 4

Image
2 2 $begingroup$ Given a graph with some set of colors, the goal of the coloring problem is to color the input graph with as few number of colors as possible, such that no adjacent vertices have the same color. In general, the problem is hard. For trees and cycles, the problem is solvable in polynomial time. I am interested in bounded degree instances or more precisely graphs of degree at most 4. Is there any non-trivial subclass of graphs of degree at most 4 for which the coloring problem is solvable in polynomial time? complexity-theory graphs colorings share | cite | improve this question edited 54 mins ago D...

Laravel 5.5 testing ModelNotFoundException exception for delete api routes

Image
0 I'm having odd behaviour in a laravel 5.5 project. I have some feature tests set up and working, and need to test that a specific route will return a 404 if the id passed in doesn't exist. I have explicit model binding set up in the RouteServiceProvider for my Note model Route::bind('note', function($value){ return Note::where('id', $value)->first() ?? abort(404); }); This works for my get route test. This test below passes as expected. ( $this->headers is just some bits I set in a setUp method that is needed for a lot of the tests) /** @test */ public function error_received_if_note_does_not_exist() { $this->withExceptionHandling(); $response = $this->json('GET', '/api/v1/note/1', , $this->headers); $response->assertSt...