diff --git a/README.md b/README.md index f2ca12a..a4874ba 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ Atlas Librarian is a modular system designed to process, organize, and make sear ``` atlas/ +|-- lexikon/ # Frontend app ├── librarian/ │ ├── atlas-librarian/ # Main application │ ├── librarian-core/ # Core functionality and storage diff --git a/lexikon/.env.local.example b/lexikon/.env.local.example new file mode 100644 index 0000000..00611c8 --- /dev/null +++ b/lexikon/.env.local.example @@ -0,0 +1,3 @@ +NEXT_PUBLIC_SUPABASE_URL=your-project-url +NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key +SUPABASE_SERVICE_ROLE_KEY=your-service-role-key diff --git a/lexikon/.gitignore b/lexikon/.gitignore new file mode 100644 index 0000000..a93f45c --- /dev/null +++ b/lexikon/.gitignore @@ -0,0 +1,44 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# lockfiles +package-lock.json + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local +.env + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + + +# other +.github +# _legacy diff --git a/lexikon/.husky/pre-commit b/lexikon/.husky/pre-commit new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/.npmrc b/lexikon/.npmrc new file mode 100644 index 0000000..92ebc2c --- /dev/null +++ b/lexikon/.npmrc @@ -0,0 +1,2 @@ +public-hoist-pattern[]=*@heroui/* +package-lock=true diff --git a/lexikon/LICENSE b/lexikon/LICENSE new file mode 100644 index 0000000..7f91f84 --- /dev/null +++ b/lexikon/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Next UI + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/lexikon/eslint.config.mjs b/lexikon/eslint.config.mjs new file mode 100644 index 0000000..739e7b1 --- /dev/null +++ b/lexikon/eslint.config.mjs @@ -0,0 +1,156 @@ +import path from "node:path"; +import { fileURLToPath } from "node:url"; + +import { fixupConfigRules, fixupPluginRules } from "@eslint/compat"; +import typescriptEslint from "@typescript-eslint/eslint-plugin"; +import tsParser from "@typescript-eslint/parser"; +import _import from "eslint-plugin-import"; +import jsxA11Y from "eslint-plugin-jsx-a11y"; +import prettier from "eslint-plugin-prettier"; +import react from "eslint-plugin-react"; +import unusedImports from "eslint-plugin-unused-imports"; +import { defineConfig, globalIgnores } from "eslint/config"; +import globals from "globals"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); +const compat = new FlatCompat({ + baseDirectory: __dirname, + recommendedConfig: js.configs.recommended, + allConfig: js.configs.all, +}); + +export default defineConfig([ + globalIgnores([ + ".next/**", + "node_modules/**", + "out/**", + "dist/**", + "**/index.ts", + "**/index.d.ts", + ]), + { + extends: fixupConfigRules( + compat.extends( + "plugin:react/recommended", + "plugin:prettier/recommended", + "plugin:react-hooks/recommended", + "plugin:jsx-a11y/recommended", + "plugin:@next/next/recommended" + ) + ), + + plugins: { + react: fixupPluginRules(react), + "unused-imports": unusedImports, + import: fixupPluginRules(_import), + "@typescript-eslint": typescriptEslint, + "jsx-a11y": fixupPluginRules(jsxA11Y), + prettier: fixupPluginRules(prettier), + }, + + languageOptions: { + globals: { + ...Object.fromEntries( + Object.entries(globals.browser).map(([key]) => [key, "off"]) + ), + ...globals.node, + }, + + parser: tsParser, + ecmaVersion: 12, + sourceType: "module", + + parserOptions: { + ecmaFeatures: { + jsx: true, + }, + }, + }, + + settings: { + react: { + version: "detect", + }, + }, + + rules: { + "no-console": "warn", + "react/prop-types": "off", + "react/jsx-uses-react": "off", + "react/react-in-jsx-scope": "off", + "react-hooks/exhaustive-deps": "off", + "@next/next/no-assign-module-variable": "off", + "jsx-a11y/click-events-have-key-events": "warn", + "jsx-a11y/interactive-supports-focus": "warn", + "prettier/prettier": "warn", + + // Disable the built‑in unused vars rules: + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": "off", + + // Enable unused imports rule: + "unused-imports/no-unused-imports": "error", + + // (Optional) If you want to also flag unused variables (excluding imports) + // you can use the plugin’s no-unused-vars rule: + // "unused-imports/no-unused-vars": [ + // "warn", + // { vars: "all", varsIgnorePattern: "^_", args: "after-used", argsIgnorePattern: "^_" } + // ], + + "import/order": [ + "warn", + { + groups: [ + "type", + "builtin", + "object", + "external", + "internal", + "parent", + "sibling", + "index", + ], + pathGroups: [ + { + pattern: "~/**", + group: "external", + position: "after", + }, + ], + "newlines-between": "always", + }, + ], + "react/self-closing-comp": "warn", + "react/jsx-sort-props": [ + "warn", + { + callbacksLast: true, + shorthandFirst: true, + noSortAlphabetically: false, + reservedFirst: true, + }, + ], + "padding-line-between-statements": [ + "warn", + { + blankLine: "always", + prev: "*", + next: "return", + }, + { + blankLine: "always", + prev: ["const", "let", "var"], + next: "*", + }, + { + blankLine: "any", + prev: ["const", "let", "var"], + next: ["const", "let", "var"], + }, + ], + "react/no-unknown-property": "warn", + }, + }, +]); diff --git a/lexikon/next.config.mjs b/lexikon/next.config.mjs new file mode 100644 index 0000000..093a0b7 --- /dev/null +++ b/lexikon/next.config.mjs @@ -0,0 +1,33 @@ +import createMDX from "@next/mdx"; + +/** @type {import('next').NextConfig} */ +const nextConfig = { + // Configure `pageExtensions` to include markdown and MDX files + pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"], + // Optionally, add any other Next.js config below + reactStrictMode: true, + allowedDevOrigins: ["*", "os-alpha.local"], + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "moodle.fhgr.ch", + port: "", + pathname: "/**", + }, + ], + }, +}; + +const withMDX = createMDX({ + options: { + remarkPlugins: [ + ["remark-gfm", { strict: true, singleTilde: true }], + ["remark-math", { strict: true }], + ], + rehypePlugins: [["rehype-katex", { strict: true, throwOnError: true }]], + }, +}); + +// Merge MDX config with Next.js config +export default withMDX(nextConfig); diff --git a/lexikon/package.json b/lexikon/package.json new file mode 100644 index 0000000..8a3f4f5 --- /dev/null +++ b/lexikon/package.json @@ -0,0 +1,123 @@ +{ + "name": "lexikon", + "version": "0.0.1", + "private": true, + "type": "module", + "scripts": { + "dev": "next dev --turbopack -H 0.0.0.0 -p 3000", + "build": "next build --turbopack", + "start": "next start", + "lint": "next lint", + "prepare": "husky" + }, + "dependencies": { + "@codemirror/autocomplete": "^6.18.6", + "@codemirror/lang-javascript": "^6.2.3", + "@codemirror/lang-markdown": "^6.3.2", + "@codemirror/lang-python": "^6.1.7", + "@codemirror/theme-one-dark": "^6.1.2", + "@codemirror/view": "^6.36.5", + "@eslint/eslintrc": "^3.3.1", + "@heroui/button": "2.2.18-beta.2", + "@heroui/code": "2.2.14-beta.2", + "@heroui/input": "2.4.18-beta.2", + "@heroui/kbd": "2.2.14-beta.2", + "@heroui/link": "2.2.15-beta.2", + "@heroui/listbox": "2.3.17-beta.2", + "@heroui/navbar": "2.2.16-beta.2", + "@heroui/react": "2.8.0-beta.2", + "@heroui/snippet": "2.2.19-beta.2", + "@heroui/switch": "2.2.16-beta.2", + "@heroui/system": "2.4.14-beta.2", + "@heroui/theme": "2.4.14-beta.2", + "@mdx-js/loader": "^3.1.0", + "@mdx-js/react": "^3.1.0", + "@monaco-editor/react": "^4.7.0", + "@next/mdx": "^15.3.1", + "@react-aria/ssr": "3.9.8", + "@react-aria/visually-hidden": "3.8.22", + "@react-three/drei": "^10.0.6", + "@react-three/fiber": "^9.1.2", + "@react-types/shared": "3.29.0", + "@supabase/ssr": "^0.6.1", + "@supabase/supabase-js": "^2.49.4", + "@tailwindcss/postcss": "^4.1.4", + "@tanstack/react-query": "^5.75.5", + "@types/codemirror": "^5.60.15", + "@types/three": "^0.175.0", + "@typescript-eslint/typescript-estree": "^8.30.1", + "@uiw/codemirror-themes-all": "^4.23.10", + "@uiw/react-codemirror": "^4.23.10", + "clsx": "2.1.1", + "framer-motion": "^12.9.2", + "globals": "^16.0.0", + "intl-messageformat": "^10.7.16", + "katex": "^0.16.22", + "lucide-react": "^0.501.0", + "markdown-to-jsx": "^7.7.4", + "ml-kmeans": "^6.0.0", + "monaco-editor": "^0.52.2", + "motion": "^12.7.4", + "next": "^15.3.1", + "next-themes": "^0.4.6", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-markdown": "^10.1.0", + "react-monaco-editor": "^0.58.0", + "react-swipeable": "^7.0.2", + "react-syntax-highlighter": "^15.6.1", + "react-three-fiber": "^6.0.13", + "react-use-measure": "^2.1.7", + "rehype-katex": "^7.0.1", + "rehype-sanitize": "^6.0.0", + "rehype-slug": "^6.0.0", + "remark-gfm": "^4.0.1", + "remark-math": "^6.0.0", + "swr": "^2.3.3", + "tailwind-merge": "^3.2.0", + "tailwind-variants": "1.0.0", + "tailwindcss": "4.1.4", + "three": "^0.175.0", + "three-stdlib": "^2.36.0", + "zustand": "^5.0.3" + }, + "devDependencies": { + "@eslint/compat": "^1.2.8", + "@next/eslint-plugin-next": "^15.3.1", + "@react-types/shared": "^3.28.0", + "@tailwindcss/postcss": "^4.0.14", + "@types/mdx": "^2.0.13", + "@types/node": "22.14.1", + "@types/react": "^19.1.2", + "@types/react-dom": "^19.1.2", + "@types/react-syntax-highlighter": "^15.5.13", + "@typescript-eslint/eslint-plugin": "8.30.1", + "@typescript-eslint/parser": "8.30.1", + "eslint": "^9.25.0", + "eslint-config-prettier": "10.1.2", + "eslint-plugin-import": "^2.31.0", + "eslint-plugin-jsx-a11y": "^6.10.2", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettier": "5.2.6", + "eslint-plugin-react": "^7.37.5", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-unused-imports": "4.1.4", + "husky": "^9.1.7", + "lint-staged": "^15.5.1", + "postcss": "^8.5.3", + "prettier": "^3.5.3", + "raw-loader": "^4.0.2", + "tailwindcss": "4.0.14", + "typescript": "5.8.3" + }, + "pnpm": { + "onlyBuiltDependencies": [ + "core-js" + ], + "overrides": { + "highlight.js@>=9.0.0 <10.4.1": ">=10.4.1", + "highlight.js@<9.18.2": ">=9.18.2" + } + }, + "packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac" +} diff --git a/lexikon/pnpm-lock.yaml b/lexikon/pnpm-lock.yaml new file mode 100644 index 0000000..22ed833 --- /dev/null +++ b/lexikon/pnpm-lock.yaml @@ -0,0 +1,11440 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +overrides: + highlight.js@>=9.0.0 <10.4.1: '>=10.4.1' + highlight.js@<9.18.2: '>=9.18.2' + +importers: + + .: + dependencies: + '@codemirror/autocomplete': + specifier: ^6.18.6 + version: 6.18.6 + '@codemirror/lang-javascript': + specifier: ^6.2.3 + version: 6.2.3 + '@codemirror/lang-markdown': + specifier: ^6.3.2 + version: 6.3.2 + '@codemirror/lang-python': + specifier: ^6.1.7 + version: 6.1.7 + '@codemirror/theme-one-dark': + specifier: ^6.1.2 + version: 6.1.2 + '@codemirror/view': + specifier: ^6.36.5 + version: 6.36.5 + '@eslint/eslintrc': + specifier: ^3.3.1 + version: 3.3.1 + '@heroui/button': + specifier: 2.2.18-beta.2 + version: 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/code': + specifier: 2.2.14-beta.2 + version: 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/input': + specifier: 2.4.18-beta.2 + version: 2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/kbd': + specifier: 2.2.14-beta.2 + version: 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/link': + specifier: 2.2.15-beta.2 + version: 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/listbox': + specifier: 2.3.17-beta.2 + version: 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/navbar': + specifier: 2.2.16-beta.2 + version: 2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react': + specifier: 2.8.0-beta.2 + version: 2.8.0-beta.2(@types/react@19.1.2)(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.4) + '@heroui/snippet': + specifier: 2.2.19-beta.2 + version: 2.2.19-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/switch': + specifier: 2.2.16-beta.2 + version: 2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': + specifier: 2.4.14-beta.2 + version: 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': + specifier: 2.4.14-beta.2 + version: 2.4.14-beta.2(tailwindcss@4.1.4) + '@mdx-js/loader': + specifier: ^3.1.0 + version: 3.1.0(acorn@8.14.1)(webpack@5.98.0) + '@mdx-js/react': + specifier: ^3.1.0 + version: 3.1.0(@types/react@19.1.2)(react@19.1.0) + '@monaco-editor/react': + specifier: ^4.7.0 + version: 4.7.0(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@next/mdx': + specifier: ^15.3.1 + version: 15.3.1(@mdx-js/loader@3.1.0(acorn@8.14.1)(webpack@5.98.0))(@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0)) + '@react-aria/ssr': + specifier: 3.9.8 + version: 3.9.8(react@19.1.0) + '@react-aria/visually-hidden': + specifier: 3.8.22 + version: 3.8.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-three/drei': + specifier: ^10.0.6 + version: 10.0.6(@react-three/fiber@9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0))(@types/react@19.1.2)(@types/three@0.175.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0) + '@react-three/fiber': + specifier: ^9.1.2 + version: 9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0) + '@react-types/shared': + specifier: 3.29.0 + version: 3.29.0(react@19.1.0) + '@supabase/ssr': + specifier: ^0.6.1 + version: 0.6.1(@supabase/supabase-js@2.49.4) + '@supabase/supabase-js': + specifier: ^2.49.4 + version: 2.49.4 + '@tailwindcss/postcss': + specifier: ^4.1.4 + version: 4.1.4 + '@tanstack/react-query': + specifier: ^5.75.5 + version: 5.75.5(react@19.1.0) + '@types/codemirror': + specifier: ^5.60.15 + version: 5.60.15 + '@types/three': + specifier: ^0.175.0 + version: 0.175.0 + '@typescript-eslint/typescript-estree': + specifier: ^8.30.1 + version: 8.30.1(typescript@5.8.3) + '@uiw/codemirror-themes-all': + specifier: ^4.23.10 + version: 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/react-codemirror': + specifier: ^4.23.10 + version: 4.23.10(@babel/runtime@7.27.0)(@codemirror/autocomplete@6.18.6)(@codemirror/language@6.11.0)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.10)(@codemirror/state@6.5.2)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.5)(codemirror@6.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + clsx: + specifier: 2.1.1 + version: 2.1.1 + framer-motion: + specifier: ^12.9.2 + version: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + globals: + specifier: ^16.0.0 + version: 16.0.0 + intl-messageformat: + specifier: ^10.7.16 + version: 10.7.16 + katex: + specifier: ^0.16.22 + version: 0.16.22 + lucide-react: + specifier: ^0.501.0 + version: 0.501.0(react@19.1.0) + markdown-to-jsx: + specifier: ^7.7.4 + version: 7.7.4(react@19.1.0) + ml-kmeans: + specifier: ^6.0.0 + version: 6.0.0 + monaco-editor: + specifier: ^0.52.2 + version: 0.52.2 + motion: + specifier: ^12.7.4 + version: 12.7.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + next: + specifier: ^15.3.1 + version: 15.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + next-themes: + specifier: ^0.4.6 + version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: + specifier: 19.1.0 + version: 19.1.0 + react-dom: + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) + react-markdown: + specifier: ^10.1.0 + version: 10.1.0(@types/react@19.1.2)(react@19.1.0) + react-monaco-editor: + specifier: ^0.58.0 + version: 0.58.0(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react-swipeable: + specifier: ^7.0.2 + version: 7.0.2(react@19.1.0) + react-syntax-highlighter: + specifier: ^15.6.1 + version: 15.6.1(react@19.1.0) + react-three-fiber: + specifier: ^6.0.13 + version: 6.0.13(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0) + react-use-measure: + specifier: ^2.1.7 + version: 2.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + rehype-katex: + specifier: ^7.0.1 + version: 7.0.1 + rehype-sanitize: + specifier: ^6.0.0 + version: 6.0.0 + rehype-slug: + specifier: ^6.0.0 + version: 6.0.0 + remark-gfm: + specifier: ^4.0.1 + version: 4.0.1 + remark-math: + specifier: ^6.0.0 + version: 6.0.0 + swr: + specifier: ^2.3.3 + version: 2.3.3(react@19.1.0) + tailwind-merge: + specifier: ^3.2.0 + version: 3.2.0 + tailwind-variants: + specifier: 1.0.0 + version: 1.0.0(tailwindcss@4.1.4) + tailwindcss: + specifier: 4.1.4 + version: 4.1.4 + three: + specifier: ^0.175.0 + version: 0.175.0 + three-stdlib: + specifier: ^2.36.0 + version: 2.36.0(three@0.175.0) + zustand: + specifier: ^5.0.3 + version: 5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) + devDependencies: + '@eslint/compat': + specifier: ^1.2.8 + version: 1.2.8(eslint@9.25.0(jiti@2.4.2)) + '@next/eslint-plugin-next': + specifier: ^15.3.1 + version: 15.3.1 + '@types/mdx': + specifier: ^2.0.13 + version: 2.0.13 + '@types/node': + specifier: 22.14.1 + version: 22.14.1 + '@types/react': + specifier: ^19.1.2 + version: 19.1.2 + '@types/react-dom': + specifier: ^19.1.2 + version: 19.1.2(@types/react@19.1.2) + '@types/react-syntax-highlighter': + specifier: ^15.5.13 + version: 15.5.13 + '@typescript-eslint/eslint-plugin': + specifier: 8.30.1 + version: 8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 8.30.1 + version: 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + eslint: + specifier: ^9.25.0 + version: 9.25.0(jiti@2.4.2) + eslint-config-prettier: + specifier: 10.1.2 + version: 10.1.2(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-import: + specifier: ^2.31.0 + version: 2.31.0(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-jsx-a11y: + specifier: ^6.10.2 + version: 6.10.2(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-node: + specifier: ^11.1.0 + version: 11.1.0(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-prettier: + specifier: 5.2.6 + version: 5.2.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.2(eslint@9.25.0(jiti@2.4.2)))(eslint@9.25.0(jiti@2.4.2))(prettier@3.5.3) + eslint-plugin-react: + specifier: ^7.37.5 + version: 7.37.5(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-react-hooks: + specifier: ^5.2.0 + version: 5.2.0(eslint@9.25.0(jiti@2.4.2)) + eslint-plugin-unused-imports: + specifier: 4.1.4 + version: 4.1.4(@typescript-eslint/eslint-plugin@8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2)) + husky: + specifier: ^9.1.7 + version: 9.1.7 + lint-staged: + specifier: ^15.5.1 + version: 15.5.1 + postcss: + specifier: ^8.5.3 + version: 8.5.3 + prettier: + specifier: ^3.5.3 + version: 3.5.3 + raw-loader: + specifier: ^4.0.2 + version: 4.0.2(webpack@5.98.0) + typescript: + specifier: 5.8.3 + version: 5.8.3 + +packages: + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@babel/runtime@7.27.0': + resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} + engines: {node: '>=6.9.0'} + + '@codemirror/autocomplete@6.18.6': + resolution: {integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==} + + '@codemirror/commands@6.8.1': + resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==} + + '@codemirror/lang-css@6.3.1': + resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==} + + '@codemirror/lang-html@6.4.9': + resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==} + + '@codemirror/lang-javascript@6.2.3': + resolution: {integrity: sha512-8PR3vIWg7pSu7ur8A07pGiYHgy3hHj+mRYRCSG8q+mPIrl0F02rgpGv+DsQTHRTc30rydOsf5PZ7yjKFg2Ackw==} + + '@codemirror/lang-markdown@6.3.2': + resolution: {integrity: sha512-c/5MYinGbFxYl4itE9q/rgN/sMTjOr8XL5OWnC+EaRMLfCbVUmmubTJfdgpfcSS2SCaT7b+Q+xi3l6CgoE+BsA==} + + '@codemirror/lang-python@6.1.7': + resolution: {integrity: sha512-mZnFTsL4lW5p9ch8uKNKeRU3xGGxr1QpESLilfON2E3fQzOa/OygEMkaDvERvXDJWJA9U9oN/D4w0ZuUzNO4+g==} + + '@codemirror/language@6.11.0': + resolution: {integrity: sha512-A7+f++LodNNc1wGgoRDTt78cOwWm9KVezApgjOMp1W4hM0898nsqBXwF+sbePE7ZRcjN7Sa1Z5m2oN27XkmEjQ==} + + '@codemirror/lint@6.8.5': + resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==} + + '@codemirror/search@6.5.10': + resolution: {integrity: sha512-RMdPdmsrUf53pb2VwflKGHEe1XVM07hI7vV2ntgw1dmqhimpatSJKva4VA9h4TLUDOD4EIF02201oZurpnEFsg==} + + '@codemirror/state@6.5.2': + resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==} + + '@codemirror/theme-one-dark@6.1.2': + resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==} + + '@codemirror/view@6.36.5': + resolution: {integrity: sha512-cd+FZEUlu3GQCYnguYm3EkhJ8KJVisqqUsCOKedBoAt/d9c76JUUap6U0UrpElln5k6VyrEOYliMuDAKIeDQLg==} + + '@emnapi/runtime@1.4.3': + resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} + + '@eslint-community/eslint-utils@4.6.1': + resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.2.8': + resolution: {integrity: sha512-LqCYHdWL/QqKIJuZ/ucMAv8d4luKGs4oCPgpt8mWztQAtPrHfXKQ/XAUc8ljCHAfJCn6SvkpTcGt5Tsh8saowA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^9.10.0 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.20.0': + resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.2.1': + resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.13.0': + resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.25.0': + resolution: {integrity: sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.8': + resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@formatjs/ecma402-abstract@2.3.4': + resolution: {integrity: sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA==} + + '@formatjs/fast-memoize@2.2.7': + resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==} + + '@formatjs/icu-messageformat-parser@2.11.2': + resolution: {integrity: sha512-AfiMi5NOSo2TQImsYAg8UYddsNJ/vUEv/HaNqiFjnI3ZFfWihUtD5QtuX6kHl8+H+d3qvnE/3HZrfzgdWpsLNA==} + + '@formatjs/icu-skeleton-parser@1.8.14': + resolution: {integrity: sha512-i4q4V4qslThK4Ig8SxyD76cp3+QJ3sAqr7f6q9VVfeGtxG9OhiAk3y9XF6Q41OymsKzsGQ6OQQoJNY4/lI8TcQ==} + + '@formatjs/intl-localematcher@0.6.1': + resolution: {integrity: sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg==} + + '@heroui/accordion@2.2.15-beta.2': + resolution: {integrity: sha512-XWirXQu1zvDyn9a+DpKDKMds7GCutj0jnxBiS6CuCnUuP12I6mtWjWOPuswEq4L7sVgQqQvNGHCgf0QzCwry5A==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/alert@2.2.18-beta.2': + resolution: {integrity: sha512-4NEMZlptDrRP0p3hswImsVd4mAfWBBC5qF1MavKKf3p/go7cBwS0HFHo8gXQd/6T9j4qObLxNYcyOJEINjGuRA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/aria-utils@2.2.15-beta.2': + resolution: {integrity: sha512-eYWYIi42a+Ed50hf/Mo6tsmAEhEo71w5EZ+vPTA+zovb5uBKnUUWWCxdlgoTXtDTa6t+tGX6SHW+UZC1bH44yg==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/autocomplete@2.3.19-beta.2': + resolution: {integrity: sha512-qNzsb8oTldjmZuQpyO+CEZoKpGdA6OwwRBeEaHW191/nBdt9SFWv05kbHkVzKwPGVoFQK9A2/8SEHBa+msxlIA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/avatar@2.2.14-beta.2': + resolution: {integrity: sha512-cMDbsZ2w7EduFWLwMCrAuXZMmwBepCpMKk2xNWprdLi2SgaoEoxdU6psIISZUW2OspERoRnXCnq1rgYjyGOI7g==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/badge@2.2.12-beta.2': + resolution: {integrity: sha512-xn8J+oFrSoBkCzmNDDLS6KMsU+eT3RnzNLGuKRCOiYf0+XewQ4pmX5plD+TQPjDDUTS+a17Totbd8+z3XSvh5g==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/breadcrumbs@2.2.14-beta.2': + resolution: {integrity: sha512-LIAMtl4zyl+rYZHIUIeWEf0OVUylWtduclaqyon2OM/v9BHSssf7TLd8C8ox2kYyQcmA1sb6NAc5qPa6CWhxWg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/button@2.2.18-beta.2': + resolution: {integrity: sha512-PRvFowc+f5CtnBzg0tpNbvcznziErfisirxTTOpOwprtVVH41fiLOnHd3xm/tpcGvVWW+bijB/we3ijkFM1Gng==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/calendar@2.2.18-beta.2': + resolution: {integrity: sha512-V3Hf5HiP8u3PJq3vo3fd44rGIopKOacBcBqzkG+0K26g2pT10gepEmvMwam5qgWpFRaQXL6PXk+nGd63MN+4sQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/card@2.2.17-beta.2': + resolution: {integrity: sha512-/km0IU9X/+ob9zxxRvpmywm+ozbGYFvEHNteVfNwm8skR0sKCvEiDV2AIsFMsQbfllSkBa+8/eljJDooVBOvEg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/checkbox@2.3.17-beta.2': + resolution: {integrity: sha512-snmC/XvX7bYm2Y1+Pv/B0IatRNTcNMye3dbeCsUQJnzJIqIUo6h1vjQMkex/18wOKUCgfM7Uk+2yp4oT7CgBYA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/chip@2.2.14-beta.2': + resolution: {integrity: sha512-Wz04W+bMy0krSbju5gFRkNGxI1Ahey2uRGw0a77M+nThmJzem9XSA4inxpzVeCo4N2VgVfAU2x/RDvdo5lcENw==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/code@2.2.14-beta.2': + resolution: {integrity: sha512-2bIdaXktFLhm4OVGV7mTjKIqWLO+eehhjheULBuNeT32yLDmFpCSPXhq3j3yP2NibU2e6X5ppwtyAy4+Gr2NBQ==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/date-input@2.3.17-beta.2': + resolution: {integrity: sha512-t3LBsMnhPH/tjIZOr0h8N7rSLI+zEla//89GUu+f3BN4CARN1KdPJ7VldQnhc/Qj1lqcfua1nJkCVIKqKDjkJg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/date-picker@2.3.18-beta.2': + resolution: {integrity: sha512-motsFB7iAJ6GDnP6/XuVNEMWpHbbANv7KSd4TBZ8ljpgdCxN+PiFRfB2jlwGNJsLA3GqqQyayIi+5W5goPoHOQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/divider@2.2.13-beta.2': + resolution: {integrity: sha512-quCE1AlNheqAL2U9Y+m5vZlYlODONabeAqjXeVIJRsYSTpqQ2F09vcyzLXjnsAY+YtxUaqVrWkOF56KiHIgKlA==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/dom-animation@2.1.8-beta.2': + resolution: {integrity: sha512-rPjjzEgq4s5CYiCiey/bqQWo3Y8dBvMV35ZufOt6CGJXu474pDZtoLshfXWG1NNU+YsmLhNoLaBK9feOoNYXyg==} + peerDependencies: + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + + '@heroui/drawer@2.2.15-beta.2': + resolution: {integrity: sha512-xhjHbAmo6ZKkgYWGChFcdfD8AFkj556ozlYEIfMUmA9MNlkUGEOVcc4Q2+IfpC83SIUraHbCbdA9V5aOu3yjOg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/dropdown@2.3.18-beta.2': + resolution: {integrity: sha512-GhaXyPwtY36W0IL8ORmLdj/XtLtE97CSzUHGYAFXWQAx+C0SeJRFZJpXMSpZlBsV1DfhwblzcZ0inUtmyMEncw==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/form@2.1.17-beta.2': + resolution: {integrity: sha512-B365duZDapLehuGd1AmhPPES1TYdYMSUtb0qo6tu7Swj6RwM5yBJt7Kqr6XXj6HrIE+dnrf9C6Rpdq7oqkSlwg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18' + react-dom: '>=18' + + '@heroui/framer-utils@2.1.14-beta.2': + resolution: {integrity: sha512-c5fBa8aXfuantHHQ1hFA/MwmUWy+PNCAIfgXlB2C5vMyjpD/ljiKXamkOPvYZJi1/Qp4qKtJUXWQS/r17i2VRQ==} + peerDependencies: + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/image@2.2.12-beta.2': + resolution: {integrity: sha512-CVeNAAXRjeftiLrav8Q298v8/rs+Kdko7FLNENhCq2QZAByjKXZ5b5Ym9OlJRpES8P7rrFyylG/jeHi23TWPYg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/input-otp@2.1.17-beta.2': + resolution: {integrity: sha512-zcF4ckfqT9c/tx9P6zh8a0AzsdZY3H3YAH3jZrfjfN8rTDawug/VgdV1aN5X+ki9xuhcaN9elj2nS4XGKFoRzA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18' + react-dom: '>=18' + + '@heroui/input@2.4.18-beta.2': + resolution: {integrity: sha512-i5dqC0m81m2hV/8NwwB1CsRwYxnEx92GK5WhizLK64TQV8yxRftJjjKa/o+nFiazdglWBJz+3Kl0qTWvOZjD9Q==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/kbd@2.2.14-beta.2': + resolution: {integrity: sha512-DEoHJkbNk6UgNKQ1ydbvwhP3fZWFOBPawKYW/W5y2+PI3nvQpsjhjstCrgFMJaFUFGPFeYJ8X5nBgpSPLag+9Q==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/link@2.2.15-beta.2': + resolution: {integrity: sha512-z5YbER0a6BevoV/QDMDHNuyalz09xOMyphPQU3c/lleCBjw0q+nxy/nC+JAtMc5nNxR13O1wL35vMxm0wpWr8Q==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/listbox@2.3.17-beta.2': + resolution: {integrity: sha512-xxq25cLH0jGYGL4sA1fns3cOyOnEpv8CqIesQd03EWeuWjGjglvUbgw7v6jZgtmgMugAILotSXo5cZ0SDhwEsQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/menu@2.2.17-beta.2': + resolution: {integrity: sha512-AZf+7HqS5RwLxAX5KctxRjV/rsDya89eg1PB0RxLu/pqOCFVSEzcN55Yg4QUir+J8xzIwnaWEMsirlodPQMIrg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/modal@2.2.15-beta.2': + resolution: {integrity: sha512-z/XoviPEXRnN+ESxzMfwUFDdwWfUFWIIi3WMpC3LkQ/jt4KtyKmnpX5udsAvL36LhDyXyduc+QVVRlDNkoFqjw==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/navbar@2.2.16-beta.2': + resolution: {integrity: sha512-pMeL8rifZiqIx50brMyWOD4h/twBQ2x/WyJM3rEzyODzK2TRWOaESLRY3K+IgQ10OqkRzi7LPU2dQ6S2UalaKQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/number-input@2.0.8-beta.2': + resolution: {integrity: sha512-9r5ULHRf3ZPaMRuPV4XvUwT6kanwrRvhws+J4yC4Dl4Yr9FDr3+Kso91x5+fVGCIiBeywnAa9oCLlkFpB1iirg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/pagination@2.2.16-beta.2': + resolution: {integrity: sha512-xsQ+2ur+AP6wWh6FqFCUa3bk/OkX4NPJBu20wyRFMosFU5NkCQjNmFxv42FkC/bM9CouaS6+SlhXZdOlSyqK6g==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/popover@2.3.18-beta.2': + resolution: {integrity: sha512-69ONSuyN4sJ13r7UQbyRaiJ01dU33aUAoIUisjjE1IYIS091v36jb3RvsZSyf3dnjUJiPJPcXIzRCsz/upeJMA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/progress@2.2.14-beta.2': + resolution: {integrity: sha512-bUMEVRGQnDmAu1Zzxo9DJ7TS63njNm2/HtW5AhEuj2nexiTa9Xe3Pk7QfkFh9w3itXFwjPxwOkgC1no5Biz8TA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/radio@2.3.17-beta.2': + resolution: {integrity: sha512-qDvv7CJ5OCpwuUmLISl/qf975oLlymUNbpJpFekX7P/Z1svGzVGXSZFFXMwSce6sFLhc9YsPvaDi3lj4nrjlmQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/react-rsc-utils@2.1.8-beta.2': + resolution: {integrity: sha512-xabvx22Pg7Fn1F7Z7w03RVXJLf8vI+AR0ftavXd6vRkLAcmuNAuwQTSYGXuxqvSiZlQJg3JfnmkV0sVZ0NUNog==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/react-utils@2.1.10-beta.2': + resolution: {integrity: sha512-nh1U8zI/JNb2GeINFlFx9x9kvSdB1PxufpBRjhbLtrn0tKg7AACGQESdpAeVoxtSWku7uSouZ7DoA3NlZYO1Lw==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/react@2.8.0-beta.2': + resolution: {integrity: sha512-3efF2qGis2/HGJceCHUhbBxuiDjddhfeo52L6ESAh0t1iJIDSqbxw0gyOiyDCeeD4aAS+/9cC5zcfsGTndsn/g==} + peerDependencies: + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/ripple@2.2.14-beta.2': + resolution: {integrity: sha512-Muapqc8AN9OZufGXEmAymzcs5sOyZcybESSDR3jdvBfl2kpXzrkpzEKwmhPmXt6w7m069UWuyr2Lh/Pzck9UNg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/scroll-shadow@2.3.12-beta.2': + resolution: {integrity: sha512-NuCa81ox+/yYRbkq8D9diY4P98GnpUGtlxVbWWll19o31qaaamJsCR9lHWZTXvmdmL+TxjDmvmj8oO9o8x8voA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/select@2.4.18-beta.2': + resolution: {integrity: sha512-Z0PanQmSAF9atAiFqbxUwolQdbC51/UVzgtS3j2jcYPdgH5yezQlPTYVbvCp6VKzl4qxeH5h2ihr5U6WZo9A4Q==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/shared-icons@2.1.8-beta.2': + resolution: {integrity: sha512-N+ilPbD3WIhJ4gdlji9K89L1fgt+ER0/hWYofxUpNwBzw3Om0kYpmOKWbvfVVWVrEunYeWflrapNnFoo7bMLXg==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/shared-utils@2.1.9-beta.2': + resolution: {integrity: sha512-o+dUmjP47Tca+4nkZ10vGeEadf6OwYHBal8Vu3UutV9EHfGvXAhJugPqBsyys2t4fSnuOUScyui4EUcU0mgW0w==} + + '@heroui/skeleton@2.2.12-beta.2': + resolution: {integrity: sha512-BEgs3R2noXMG5Hnjx6S36cz2nzaT2gSvKToRTEJCCbeAw4gZJHLnYpSQ69j70YQIVbiVt5VoIrw8Ih3ptw+UpQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/slider@2.4.15-beta.2': + resolution: {integrity: sha512-Tk2H4AFZ33T0sCkdxSsgsxPHb+o6HJLMWt5CHLtgYjDf2Z0h76tnNjNyR2r4j9Iy7Vva13BgfJF2Z0KiwwWB/A==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/snippet@2.2.19-beta.2': + resolution: {integrity: sha512-mDiK3XeprrnSl6QJcJi15afoOCDEFBBLofKGGUGgwULmUYH46SEkeZ8T2woEdeUA1tVih2r4XhCBc4pj4aXglQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/spacer@2.2.14-beta.2': + resolution: {integrity: sha512-gOvx9iOGIZm/XfItCo06jux1VAwlI4O3P3ly45XE2ZObcKWXTyRIr+/dFBVi8V+c9kxRw8dtRhOowVrD3JiBfA==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/spinner@2.2.15-beta.2': + resolution: {integrity: sha512-LHuOf2ZNoTpgAyslNRAKFvk+Kb2JfJbu/k/IjLogzqkANZFXrJPfluyZWRZrOqhk3LrHy7Ly+Nv87rm6NCHRTA==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/switch@2.2.16-beta.2': + resolution: {integrity: sha512-76A6DdzrKXRPU+luewjt1mpV1ZzzFRNsotb+VnODxMtFNeEvpRPHcYLOMjcFo7m0eNRqFCa+FHOPUHFDlA39VA==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/system-rsc@2.3.13-beta.2': + resolution: {integrity: sha512-mzVks9ztvwIBeKmuBWX/Xs+PTFzURaXEDNJ0jHdmZYj0nKMqzm1LDdi11AmLr1E/j0xsW+s+yr5nOc+26nTMnQ==} + peerDependencies: + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/system@2.4.14-beta.2': + resolution: {integrity: sha512-eM8YxB8t8x12TB4u0Qen9kEmVRvqna+O+cAEq/7Q/oE0iElcS0nSYGGQQYlNmK8VUcaQ2VVEtWkbPRHWfmTaQw==} + peerDependencies: + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/table@2.2.17-beta.2': + resolution: {integrity: sha512-X0accza6iCUWCNsd+EZ52dr/jDm/TI+WhgrAwNib5opBEbnbyjBbv/IcXIaUWiYBr19dIGvohGg5fsaMpJDbig==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/tabs@2.2.15-beta.2': + resolution: {integrity: sha512-VUddthmKE4M7nO1XYdstkEnKbUPYHw+wQTIUYwd4xl9jwjLc5uqdeAeL3u4pGigd4XPqtxCxT+S23IkD9kOkzg==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/theme@2.4.14-beta.2': + resolution: {integrity: sha512-qlGoE4ssszeJ/p4wuDwq+Nyj9FS/zsUBMZLpLS8mijQF8FFYKucbSwWDHh/FINV12Yg+G7yRg4Vy+wzCU2fj8g==} + peerDependencies: + tailwindcss: '>=4.0.0' + + '@heroui/toast@2.0.8-beta.2': + resolution: {integrity: sha512-HmmRr36cfpeaxzkQO3jdF0Vx2Hxchg+/l74SifEt4Gcl574+WkdOu2cWnc4whcTe2eVwlZ2B99HRVXAKPdbTqQ==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/tooltip@2.2.15-beta.2': + resolution: {integrity: sha512-ymotXj5xdQxN1AXZQ4gOue63DYylktm37qzWY8nZ9jBFMicxKJ1DxVt7bxX6lqo7mpd+1O2VeO5/zlwZzYYa6w==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-aria-accordion@2.2.10-beta.1': + resolution: {integrity: sha512-MffD/64hzlDQCYKQmixlz9MfcoSGYRdQnhXPzJ0k4CZWGaWuOc8TYJH5pWieFyoWLS3jPIjW8n6RhrRoX8WAhw==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-aria-button@2.2.12-beta.2': + resolution: {integrity: sha512-OzLHF1AtF5dKdZV5wUOMkYjrGY5oxih6BGM1023KQSq++CuSdVCmmumJ0L/GwusP5otVcNZmvwhh6eKAZG84gw==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-aria-link@2.2.13-beta.2': + resolution: {integrity: sha512-EPiUkyjBqvHPjgaT/zxoyapZgubcTsLmbwB1zbL81/nOh9012ANeD3eTwNi7nQw2Hw7caXmTQMQgEayszflBCQ==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-aria-modal-overlay@2.2.11-beta.1': + resolution: {integrity: sha512-oiRYm4C6AcIeNVfwYRRf8kyvrGlETgpPJzn9Hg+Y2GsLoTWXPqlFsO5dwzkhtIy6yJLXwJvemOCCgSvyCBKUyA==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-aria-multiselect@2.4.11-beta.1': + resolution: {integrity: sha512-9EUrHI+32hp6cCfam/jpGFMpDBoi0wlIM78sXdY5UgJp5JWo7aUNp6noQEHkFSGSGQKGPGUJX5aOLLg0ofE3jQ==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-callback-ref@2.1.8-beta.2': + resolution: {integrity: sha512-cQcQ9ySGkRKkBdUgnMl0rcqpr1pPokUkcFGIpcVNcIdBMo9J8EQ6T+gGse7aKddyy5gxIxoqJEWK+gSMKunm1w==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-clipboard@2.1.9-beta.2': + resolution: {integrity: sha512-CuRPjt9I5nTT7s2XmnyAJy4GXOCRT1g9Obufi0WbkM6+q8Bwv1StJwbA060hy8aUT2lV14/nGpp0lo/VX2vOog==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-data-scroll-overflow@2.2.9-beta.2': + resolution: {integrity: sha512-PSGztWIQ/Ze6M9aqjJ19X2RlSzxCOrFCc+eKX0bxF7HM1P3va68W1IiNxIfeA7WzJwOwr2z1wnq45F00i1iU7A==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-disclosure@2.2.10-beta.2': + resolution: {integrity: sha512-qzH8wkUf7/AMqltyY7Rh1vmIVdecPjWfg3sO7L5wpO1x0KPlrkTtKANVkxSK3zj9CCN2dksLObsmHZ8yVgDG8w==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-draggable@2.1.10-beta.1': + resolution: {integrity: sha512-1R7ShsH6Dc0Rb26ehsUgFMPKDzaPQpbQofCCQeNUov6oFS3ChB+2pTiX/0tj+TIdREUTBvrrqkL1tXfr9PLeew==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-image@2.1.9-beta.2': + resolution: {integrity: sha512-GOZSk6KKB/aQwkys+RreG1m4s7KL398CbPbp5LIfnV9SIbMdO+d2Sk2sxfMb7J8MrCnqPSWyU7d1kyy4O42G6w==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-intersection-observer@2.2.10-beta.1': + resolution: {integrity: sha512-8Mz/aVaITN1/OnvqXti574BTkES+tsod8RIWjQjAbQK2VJFkCoEtczKPxqY+yf4SWFkx9imEsJPmHmiKI9d6Nw==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-is-mobile@2.2.9-beta.2': + resolution: {integrity: sha512-vOG3cn9HSZNmGxv//EIPLyhEV0I/HmY7uf7SE768fXg0xHuLwDdDYmjU/l5SSd0Al66QFf3PbxjvhKLWmDeyyw==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-is-mounted@2.1.8-beta.2': + resolution: {integrity: sha512-r49Nlt5glJqmNMT4KSLvBUqvaCSEbkqY20dj6w9Q5PuOLjzEAkXmlkqdglDVVh4t9+BL/kvw6Cy6xcn2iCkQIA==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-measure@2.1.8-beta.2': + resolution: {integrity: sha512-EBFV+UmFdAJy82JASpKuhMmG87XvzoHhxKFF/50YS6r8Tv7c41z2cxOFDTiPj3hL0fSgBd3Jb6n3wTPoCmq3sg==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-pagination@2.2.11-beta.2': + resolution: {integrity: sha512-x7AxlfLZJD9w1To10TYSFtl+i1orZR5p5r0QoKv2btPJIuO17AfNqYcHywT9tVcvRIdCoCCJ9arlUFYRgKflMQ==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-safe-layout-effect@2.1.8-beta.2': + resolution: {integrity: sha512-zlRcqgGm4yJqBoLa4KCMM4N4QmyBbRHqVhT85cuQSQ24CNUuU7ZJmjKK5CAyrpZkVLcjUugWJIXRUw80DHCPDA==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-scroll-position@2.1.8-beta.2': + resolution: {integrity: sha512-PDXs4oxLVdNeuq9marh/ndFvfQ4OKvtuzTShGfi+fEGFJea9gT/j4n1/tKoiVwGoM559fQG98l/wpNzH2j1Q/g==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/use-update-effect@2.1.8-beta.2': + resolution: {integrity: sha512-3yyhS5IeGqZxT6rMlored8cq4GguhLqlXW1wuM4jXtAfx0VRlaeV++5w4+hTxKcyXbZdnhx/SLawJ8unXAsCtA==} + peerDependencies: + react: '>=18 || >=19.0.0-rc.0' + + '@heroui/user@2.2.14-beta.2': + resolution: {integrity: sha512-VcuX4yDlZS5Jz/K8LzgLyLQViqkVoE4b+Pi4HDCOrLQQmSMe0CKaQanhqpjlw4ripRnf6lvHMASDSYsPciH6Vw==} + peerDependencies: + '@heroui/system': '>=2.4.14-beta.0' + '@heroui/theme': '>=2.4.14-beta.0' + react: '>=18 || >=19.0.0-rc.0' + react-dom: '>=18 || >=19.0.0-rc.0' + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.2': + resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} + engines: {node: '>=18.18'} + + '@img/sharp-darwin-arm64@0.34.1': + resolution: {integrity: sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.1': + resolution: {integrity: sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.1.0': + resolution: {integrity: sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.1.0': + resolution: {integrity: sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.1.0': + resolution: {integrity: sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.1.0': + resolution: {integrity: sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-ppc64@1.1.0': + resolution: {integrity: sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.1.0': + resolution: {integrity: sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.1.0': + resolution: {integrity: sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.1.0': + resolution: {integrity: sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.1.0': + resolution: {integrity: sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.34.1': + resolution: {integrity: sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.34.1': + resolution: {integrity: sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.34.1': + resolution: {integrity: sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.34.1': + resolution: {integrity: sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.34.1': + resolution: {integrity: sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.34.1': + resolution: {integrity: sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.34.1': + resolution: {integrity: sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.34.1': + resolution: {integrity: sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.1': + resolution: {integrity: sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@internationalized/date@3.7.0': + resolution: {integrity: sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ==} + + '@internationalized/date@3.8.0': + resolution: {integrity: sha512-J51AJ0fEL68hE4CwGPa6E0PO6JDaVLd8aln48xFCSy7CZkZc96dGEGmLs2OEEbBxcsVZtfrqkXJwI2/MSG8yKw==} + + '@internationalized/message@3.1.7': + resolution: {integrity: sha512-gLQlhEW4iO7DEFPf/U7IrIdA3UyLGS0opeqouaFwlMObLUzwexRjbygONHDVbC9G9oFLXsLyGKYkJwqXw/QADg==} + + '@internationalized/number@3.6.1': + resolution: {integrity: sha512-UVsb4bCwbL944E0SX50CHFtWEeZ2uB5VozZ5yDXJdq6iPZsZO5p+bjVMZh2GxHf4Bs/7xtDCcPwEa2NU9DaG/g==} + + '@internationalized/string@3.2.6': + resolution: {integrity: sha512-LR2lnM4urJta5/wYJVV7m8qk5DrMZmLRTuFhbQO5b9/sKLHgty6unQy1Li4+Su2DWydmB4aZdS5uxBRXIq2aAw==} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@lezer/common@1.2.3': + resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==} + + '@lezer/css@1.1.11': + resolution: {integrity: sha512-FuAnusbLBl1SEAtfN8NdShxYJiESKw9LAFysfea1T96jD3ydBn12oYjaSG1a04BQRIUd93/0D8e5CV1cUMkmQg==} + + '@lezer/highlight@1.2.1': + resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==} + + '@lezer/html@1.3.10': + resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==} + + '@lezer/javascript@1.5.1': + resolution: {integrity: sha512-ATOImjeVJuvgm3JQ/bpo2Tmv55HSScE2MTPnKRMRIPx2cLhHGyX2VnqpHhtIV1tVzIjZDbcWQm+NCTF40ggZVw==} + + '@lezer/lr@1.4.2': + resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==} + + '@lezer/markdown@1.4.2': + resolution: {integrity: sha512-iYewCigG/517D0xJPQd7RGaCjZAFwROiH8T9h7OTtz0bRVtkxzFhGBFJ9JGKgBBs4uuo1cvxzyQ5iKhDLMcLUQ==} + + '@lezer/python@1.1.18': + resolution: {integrity: sha512-31FiUrU7z9+d/ElGQLJFXl+dKOdx0jALlP3KEOsGTex8mvj+SoE1FgItcHWK/axkxCHGUSpqIHt6JAWfWu9Rhg==} + + '@marijn/find-cluster-break@1.0.2': + resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==} + + '@mdx-js/loader@3.1.0': + resolution: {integrity: sha512-xU/lwKdOyfXtQGqn3VnJjlDrmKXEvMi1mgYxVmukEUtVycIz1nh7oQ40bKTd4cA7rLStqu0740pnhGYxGoqsCg==} + peerDependencies: + webpack: '>=5' + peerDependenciesMeta: + webpack: + optional: true + + '@mdx-js/mdx@3.1.0': + resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} + + '@mdx-js/react@3.1.0': + resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==} + peerDependencies: + '@types/react': '>=16' + react: '>=16' + + '@mediapipe/tasks-vision@0.10.17': + resolution: {integrity: sha512-CZWV/q6TTe8ta61cZXjfnnHsfWIdFhms03M9T7Cnd5y2mdpylJM0rF1qRq+wsQVRMLz1OYPVEBU9ph2Bx8cxrg==} + + '@monaco-editor/loader@1.5.0': + resolution: {integrity: sha512-hKoGSM+7aAc7eRTRjpqAZucPmoNOC4UUbknb/VNoTkEIkCPhqV8LfbsgM1webRM7S/z21eHEx9Fkwx8Z/C/+Xw==} + + '@monaco-editor/react@4.7.0': + resolution: {integrity: sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@monogrid/gainmap-js@3.1.0': + resolution: {integrity: sha512-Obb0/gEd/HReTlg8ttaYk+0m62gQJmCblMOjHSMHRrBP2zdfKMHLCRbh/6ex9fSUJMKdjjIEiohwkbGD3wj2Nw==} + peerDependencies: + three: '>= 0.159.0' + + '@next/env@15.3.1': + resolution: {integrity: sha512-cwK27QdzrMblHSn9DZRV+DQscHXRuJv6MydlJRpFSqJWZrTYMLzKDeyueJNN9MGd8NNiUKzDQADAf+dMLXX7YQ==} + + '@next/eslint-plugin-next@15.3.1': + resolution: {integrity: sha512-oEs4dsfM6iyER3jTzMm4kDSbrQJq8wZw5fmT6fg2V3SMo+kgG+cShzLfEV20senZzv8VF+puNLheiGPlBGsv2A==} + + '@next/mdx@15.3.1': + resolution: {integrity: sha512-dnpuJRfqqCPFfLDy2hIej41JAl424zk1JOgRd7jjWu2aTeX6oi0gXdcnMAK4lhf7Xl9zSkL2stzDc1YtlB1xyg==} + peerDependencies: + '@mdx-js/loader': '>=0.15.0' + '@mdx-js/react': '>=0.15.0' + peerDependenciesMeta: + '@mdx-js/loader': + optional: true + '@mdx-js/react': + optional: true + + '@next/swc-darwin-arm64@15.3.1': + resolution: {integrity: sha512-hjDw4f4/nla+6wysBL07z52Gs55Gttp5Bsk5/8AncQLJoisvTBP0pRIBK/B16/KqQyH+uN4Ww8KkcAqJODYH3w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@15.3.1': + resolution: {integrity: sha512-q+aw+cJ2ooVYdCEqZVk+T4Ni10jF6Fo5DfpEV51OupMaV5XL6pf3GCzrk6kSSZBsMKZtVC1Zm/xaNBFpA6bJ2g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@15.3.1': + resolution: {integrity: sha512-wBQ+jGUI3N0QZyWmmvRHjXjTWFy8o+zPFLSOyAyGFI94oJi+kK/LIZFJXeykvgXUk1NLDAEFDZw/NVINhdk9FQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@15.3.1': + resolution: {integrity: sha512-IIxXEXRti/AulO9lWRHiCpUUR8AR/ZYLPALgiIg/9ENzMzLn3l0NSxVdva7R/VDcuSEBo0eGVCe3evSIHNz0Hg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@15.3.1': + resolution: {integrity: sha512-bfI4AMhySJbyXQIKH5rmLJ5/BP7bPwuxauTvVEiJ/ADoddaA9fgyNNCcsbu9SlqfHDoZmfI6g2EjzLwbsVTr5A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@15.3.1': + resolution: {integrity: sha512-FeAbR7FYMWR+Z+M5iSGytVryKHiAsc0x3Nc3J+FD5NVbD5Mqz7fTSy8CYliXinn7T26nDMbpExRUI/4ekTvoiA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@15.3.1': + resolution: {integrity: sha512-yP7FueWjphQEPpJQ2oKmshk/ppOt+0/bB8JC8svPUZNy0Pi3KbPx2Llkzv1p8CoQa+D2wknINlJpHf3vtChVBw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-x64-msvc@15.3.1': + resolution: {integrity: sha512-3PMvF2zRJAifcRNni9uMk/gulWfWS+qVI/pagd+4yLF5bcXPZPPH2xlYRYOsUjmCJOXSTAC2PjRzbhsRzR2fDQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pkgr/core@0.2.4': + resolution: {integrity: sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@react-aria/breadcrumbs@3.5.22': + resolution: {integrity: sha512-Jhx3eJqvuSUFL5/TzJ7EteluySdgKVkYGJ72Jz6AdEkiuoQAFbRZg4ferRIXQlmFL2cj7Z3jo8m8xGitebMtgw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/button@3.12.1': + resolution: {integrity: sha512-IgCENCVUzjfI4nVgJ8T1z2oD81v3IO2Ku96jVljqZ/PWnFACsRikfLeo8xAob3F0LkRW4CTK4Tjy6BRDsy2l6A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/calendar@3.7.2': + resolution: {integrity: sha512-q16jWzBCoMoohOF75rJbqh+4xlKOhagPC96jsARZmaqWOEHpFYGK/1rH9steC5+Dqe7y1nipAoLRynm18rrt3w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/checkbox@3.15.3': + resolution: {integrity: sha512-/m5JYoGsi5L0NZnacgqEcMqBo6CcTmsJ9nAY/07MDCUJBcL/Xokd8cL/1K21n6K69MiCPcxORbSBdxJDm9dR0A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/combobox@3.12.1': + resolution: {integrity: sha512-Al43cVQ2XiuPTCZ8jhz5Vmoj5Vqm6GADBtrL+XHZd7lM1gkD3q27GhKYiEt0jrcoBjjdqIiYWEaFLYg5LSQPzA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/datepicker@3.14.1': + resolution: {integrity: sha512-77HaB+dFaMu7OpDQqjDiyZdaJlkwMgQHjTRvplBVc3Pau1sfQ1LdFC4+ZAXSbQTVSYt6GaN9S2tL4qoc+bO05w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/dialog@3.5.23': + resolution: {integrity: sha512-ud8b4G5vcFEZPEjzdXrjOadwRMBKBDLiok6lIl1rsPkd1qnLMFxsl3787kct1Ex0PVVKOPlcH7feFw+1T7NsLw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/focus@3.20.1': + resolution: {integrity: sha512-lgYs+sQ1TtBrAXnAdRBQrBo0/7o5H6IrfDxec1j+VRpcXL0xyk0xPq+m3lZp8typzIghqDgpnKkJ5Jf4OrzPIw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/focus@3.20.2': + resolution: {integrity: sha512-Q3rouk/rzoF/3TuH6FzoAIKrl+kzZi9LHmr8S5EqLAOyP9TXIKG34x2j42dZsAhrw7TbF9gA8tBKwnCNH4ZV+Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/form@3.0.14': + resolution: {integrity: sha512-UYoqdGetKV+4lwGnJ22sWKywobOWYBcOetiBYTlrrnCI6e5j1Jk5iLkLvesCOoI7yfWIW9Ban5Qpze5MUrXUhQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/form@3.0.15': + resolution: {integrity: sha512-kk8AnLz+EOgnn3sTaXYmtw+YzVDc1of/+xAkuOupQi6zQFnNRjc99JlDbKHoUZ39urMl+8lsp/1b9VPPhNrBNw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/grid@3.13.0': + resolution: {integrity: sha512-RcuJYA4fyJ83MH3SunU+P5BGkx3LJdQ6kxwqwWGIuI9eUKc7uVbqvN9WN3fI+L0QfxqBFmh7ffRxIdQn7puuzw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/i18n@3.12.7': + resolution: {integrity: sha512-eLbYO2xrpeOKIEmLv2KD5LFcB0wltFqS+pUjsOzkKZg6H3b6AFDmJPxr/a0x2KGHtpGJvuHwCSbpPi9PzSSQLg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/i18n@3.12.8': + resolution: {integrity: sha512-V/Nau9WuwTwxfFffQL4URyKyY2HhRlu9zmzkF2Hw/j5KmEQemD+9jfaLueG2CJu85lYL06JrZXUdnhZgKnqMkA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/interactions@3.24.1': + resolution: {integrity: sha512-OWEcIC6UQfWq4Td5Ptuh4PZQ4LHLJr/JL2jGYvuNL6EgL3bWvzPrRYIF/R64YbfVxIC7FeZpPSkS07sZ93/NoA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/interactions@3.25.0': + resolution: {integrity: sha512-GgIsDLlO8rDU/nFn6DfsbP9rfnzhm8QFjZkB9K9+r+MTSCn7bMntiWQgMM+5O6BiA8d7C7x4zuN4bZtc0RBdXQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/label@3.7.16': + resolution: {integrity: sha512-tPog3rc5pQ9s2/5bIBtmHtbj+Ebqs2yyJgJdFjZ1/HxrjF8HMrgtBPHCn/70YD5XvmuC3OSkua84kLjNX5rBbA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/label@3.7.17': + resolution: {integrity: sha512-Fz7IC2LQT2Y/sAoV+gFEXoULtkznzmK2MmeTv5shTNjeTxzB1BhQbD4wyCypi7eGsnD/9Zy+8viULCsIUbvjWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/landmark@3.0.2': + resolution: {integrity: sha512-KVXa9s3fSgo/PiUjdbnPh3a1yS4t2bMZeVBPPzYAgQ4wcU2WjuLkhviw+5GWSWRfT+jpIMV7R/cmyvr0UHvRfg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/link@3.7.10': + resolution: {integrity: sha512-prf7s7O1PHAtA+H2przeGr8Ig4cBjk1f0kO0bQQAC3QvVOOUO7WLNU/N+xgOMNkCKEazDl21QM1o0bDRQCcXZg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/link@3.8.0': + resolution: {integrity: sha512-gpDD6t3FqtFR9QjSIKNpmSR3tS4JG2anVKx2wixuRDHO6Ddexxv4SBzsE1+230p+FlFGjftFa2lEgQ7RNjZrmA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/listbox@3.14.2': + resolution: {integrity: sha512-pIwMNZs2WaH+XIax2yemI2CNs5LVV5ooVgEh7gTYoAVWj2eFa3Votmi54VlvkN937bhD5+blH32JRIu9U8XqVw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/listbox@3.14.3': + resolution: {integrity: sha512-wzelam1KENUvKjsTq8gfrOW2/iab8SyIaSXfFvGmWW82XlDTlW+oQeA39tvOZktMVGspr+xp8FySY09rtz6UXw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/live-announcer@3.4.2': + resolution: {integrity: sha512-6+yNF9ZrZ4YJ60Oxy2gKI4/xy6WUv1iePDCFJkgpNVuOEYi8W8czff8ctXu/RPB25OJx5v2sCw9VirRogTo2zA==} + + '@react-aria/menu@3.18.1': + resolution: {integrity: sha512-czdJFNBW/B7QodyLDyQ+TvT8tZjCru7PrhUDkJS36ie/pTeQDFpIczgYjmKfJs5pP6olqLKXbwJy1iNTh01WTQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/menu@3.18.2': + resolution: {integrity: sha512-90k+Ke1bhFWhR2zuRI6OwKWQrCpOD99n+9jhG96JZJZlNo5lB+5kS+ufG1LRv5GBnCug0ciLQmPMAfguVsCjEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/numberfield@3.11.12': + resolution: {integrity: sha512-VQ4dfaf+k7n2tbP8iB1OLFYTLCh9ReyV7dNLrDvH24V7ByaHakobZjwP8tF6CpvafNYaXPUflxnHpIgXvN3QYA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/overlays@3.26.1': + resolution: {integrity: sha512-AtQ0mp+H0alFFkojKBADEUIc1AKFsSobH4QNoxQa3V4bZKQoXxga7cRhD5RRYanu3XCQOkIxZJ3vdVK/LVVBXA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/overlays@3.27.0': + resolution: {integrity: sha512-2vZVgL7FrloN5Rh8sAhadGADJbuWg69DdSJB3fd2/h5VvcEhnIfNPu9Ma5XmdkApDoTboIEsKZ4QLYwRl98w6w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/progress@3.4.21': + resolution: {integrity: sha512-KNjoJTY2AU3L+3rozwC81lwDWn6Yk2XQbcQaxEs5frRBbuiCD7hEdrerLIgKa/J85e61MDuEel0Onc0kV9kpyw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/radio@3.11.1': + resolution: {integrity: sha512-plAO5MW+QD9/kMe5NNKBzKf/+b6CywdoZ5a1T/VbvkBQYYcHaYQeBuKQ4l+hF+OY2tKAWP0rrjv7tEtacPc9TA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/selection@3.23.1': + resolution: {integrity: sha512-z4vVw7Fw0+nK46PPlCV8TyieCS+EOUp3eguX8833fFJ/QDlFp3Ewgw2T5qCIix5U3siXPYU0ZmAMOdrjibdGpQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/selection@3.24.0': + resolution: {integrity: sha512-RfGXVc04zz41NVIW89/a3quURZ4LT/GJLkiajQK2VjhisidPdrAWkcfjjWJj0n+tm5gPWbi9Rs5R/Rc8mrvq8Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/slider@3.7.17': + resolution: {integrity: sha512-B+pdHiuM9G6zLYqvkMWAEiP2AppyC3IU032yUxBUrzh3DDoHPgU8HyFurFKS0diwigzcCBcq0yQ1YTalPzWV5A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/spinbutton@3.6.14': + resolution: {integrity: sha512-oSKe9p0Q/7W39eXRnLxlwJG5dQo4ffosRT3u2AtOcFkk2Zzj+tSQFzHQ4202nrWdzRnQ2KLTgUUNnUvXf0BJcg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/ssr@3.9.7': + resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==} + engines: {node: '>= 12'} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/ssr@3.9.8': + resolution: {integrity: sha512-lQDE/c9uTfBSDOjaZUJS8xP2jCKVk4zjQeIlCH90xaLhHDgbpCdns3xvFpJJujfj3nI4Ll9K7A+ONUBDCASOuw==} + engines: {node: '>= 12'} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/switch@3.7.1': + resolution: {integrity: sha512-CE7G9pPeltbE5wEVIPlrbjarYoMNS8gsb3+RD4Be/ghKSpwppmQyn12WIs6oQl3YQSBD/GZhfA6OTyOBo0Ro9A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/table@3.17.1': + resolution: {integrity: sha512-yRZoeNwg+7ZNdq7kP9x+u9yMBL4spIdWvY9XTrYGq2XzNzl1aUUBNVszOV3hOwiU0DEF2zzUuuc8gc8Wys40zw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tabs@3.10.1': + resolution: {integrity: sha512-9tcmp4L0cCTSkJAVvsw5XkjTs4MP4ajJsWPc9IUXYoutZWSDs2igqx3/7KKjRM4OrjSolNXFf8uWyr9Oqg+vCg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/textfield@3.17.1': + resolution: {integrity: sha512-W/4nBdyXTOFPQXJ8eRK+74QFIpGR+x24SRjdl+y3WO6gFJNiiopWj8+slSK/T8LoD3g3QlzrtX/ooVQHCG3uQw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/textfield@3.17.2': + resolution: {integrity: sha512-4KINB0HueYUHUgvi/ThTP27hu4Mv5ujG55pH3dmSRD4Olu/MRy1m/Psq72o8LTf4bTOM9ZP1rKccUg6xfaMidA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toast@3.0.1': + resolution: {integrity: sha512-WDzKvQsroIowe4y/5dsZDakG4g0mDju4ZhcEPY3SFVnEBbAH1k0fwSgfygDWZdwg9FS3+oA1IYcbVt4ClK3Vfg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toggle@3.11.2': + resolution: {integrity: sha512-JOg8yYYCjLDnEpuggPo9GyXFaT/B238d3R8i/xQ6KLelpi3fXdJuZlFD6n9NQp3DJbE8Wj+wM5/VFFAi3cISpw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toolbar@3.0.0-beta.14': + resolution: {integrity: sha512-F9wFYhcbVUveo6+JfAjKyz19BnBaXBYG7YyZdGurhn5E1bD+Zrwz/ZCTrrx40xJsbofciCiiwnKiXmzB20Kl5Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tooltip@3.8.1': + resolution: {integrity: sha512-g5Vr5HFGfLQRxdYs8nZeXeNrni5YcRGegRjnEDUZwW+Gwvu8KTrD7IeXrBDndS+XoTzKC4MzfvtyXWWpYmT0KQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/utils@3.28.1': + resolution: {integrity: sha512-mnHFF4YOVu9BRFQ1SZSKfPhg3z+lBRYoW5mLcYTQihbKhz48+I1sqRkP7ahMITr8ANH3nb34YaMME4XWmK2Mgg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/utils@3.28.2': + resolution: {integrity: sha512-J8CcLbvnQgiBn54eeEvQQbIOfBF3A1QizxMw9P4cl9MkeR03ug7RnjTIdJY/n2p7t59kLeAB3tqiczhcj+Oi5w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/visually-hidden@3.8.21': + resolution: {integrity: sha512-iii5qO+cVHrHiOeiBYCnTRUQG2eOgEPFmiMG4dAuby8+pJJ8U4BvffX2sDTYWL6ztLLBYyrsUHPSw1Ld03JhmA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/visually-hidden@3.8.22': + resolution: {integrity: sha512-EO3R8YTKZ7HkLl9k1Y2uBKYBgpJagth4/4W7mfpJZE24A3fQnCP8zx1sweXiAm0mirR4J6tNaK7Ia8ssP5TpOw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/calendar@3.7.1': + resolution: {integrity: sha512-DXsJv2Xm1BOqJAx5846TmTG1IZ0oKrBqYAzWZG7hiDq3rPjYGgKtC/iJg9MUev6pHhoZlP9fdRCNFiCfzm5bLQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/checkbox@3.6.12': + resolution: {integrity: sha512-gMxrWBl+styUD+2ntNIcviVpGt2Y+cHUGecAiNI3LM8/K6weI7938DWdLdK7i0gDmgSJwhoNRSavMPI1W6aMZQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/collections@3.12.2': + resolution: {integrity: sha512-RoehfGwrsYJ/WGtyGSLZNYysszajnq0Q3iTXg7plfW1vNEzom/A31vrLjOSOHJWAtwW339SDGGRpymDtLo4GWA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/collections@3.12.3': + resolution: {integrity: sha512-QfSBME2QWDjUw/RmmUjrYl/j1iCYcYCIDsgZda1OeRtt63R11k0aqmmwrDRwCsA+Sv+D5QgkOp4KK+CokTzoVQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/combobox@3.10.3': + resolution: {integrity: sha512-l4yr8lSHfwFdA+ZpY15w98HkgF1iHytjerdQkMa4C0dCl4NWUyyWMOcgmHA8G56QEdbFo5dXyW6hzF2PJnUOIg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/datepicker@3.13.0': + resolution: {integrity: sha512-I0Y/aQraQyRLMWnh5tBZMiZ0xlmvPjFErXnQaeD7SdOYUHNtQS4BAQsMByQrMfg8uhOqUTKlIh7xEZusuqYWOA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/flags@3.1.1': + resolution: {integrity: sha512-XPR5gi5LfrPdhxZzdIlJDz/B5cBf63l4q6/AzNqVWFKgd0QqY5LvWJftXkklaIUpKSJkIKQb8dphuZXDtkWNqg==} + + '@react-stately/form@3.1.2': + resolution: {integrity: sha512-sKgkV+rxeqM1lf0dCq2wWzdYa5Z0wz/MB3yxjodffy8D43PjFvUOMWpgw/752QHPGCd1XIxA3hE58Dw9FFValg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/form@3.1.3': + resolution: {integrity: sha512-Jisgm0facSS3sAzHfSgshoCo3LxfO0wmQj98MOBCGXyVL+MSwx2ilb38eXIyBCzHJzJnPRTLaK/E4T49aph47A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/grid@3.11.1': + resolution: {integrity: sha512-xMk2YsaIKkF8dInRLUFpUXBIqnYt88hehhq2nb65RFgsFFhngE/OkaFudSUzaYPc1KvHpW+oHqvseC+G1iDG2w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/list@3.12.0': + resolution: {integrity: sha512-6niQWJ6TZwOKLAOn2wIsxtOvWenh3rKiKdOh4L4O4f7U+h1Hu000Mu4lyIQm2P9uZAkF2Y5QNh6dHN+hSd6h3A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/list@3.12.1': + resolution: {integrity: sha512-N+YCInNZ2OpY0WUNvJWUTyFHtzE5yBtZ9DI4EHJDvm61+jmZ2s3HszOfa7j+7VOKq78VW3m5laqsQNWvMrLFrQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/menu@3.9.2': + resolution: {integrity: sha512-mVCFMUQnEMs6djOqgHC2d46k/5Mv5f6UYa4TMnNDSiY8QlHG4eIdmhBmuYpOwWuOOHJ0xKmLQ4PWLzma/mBorg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/menu@3.9.3': + resolution: {integrity: sha512-9x1sTX3Xq2Q3mJUHV+YN9MR36qNzgn8eBSLa40eaFDaOOtoJ+V10m7OriUfpjey7WzLBpq00Sfda54/PbQHZ0g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/numberfield@3.9.10': + resolution: {integrity: sha512-47ta1GyfLsSaDJIdH6A0ARttPV32nu8a5zUSE2hTfRqwgAd3ksWW5ZEf6qIhDuhnE9GtaIuacsctD8C7M3EOPw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/overlays@3.6.14': + resolution: {integrity: sha512-RRalTuHdwrKO1BmXKaqBtE1GGUXU4VUAWwgh4lsP2EFSixDHmOVLxHFDWYvOPChBhpi8KXfLEgm6DEgPBvLBZQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/overlays@3.6.15': + resolution: {integrity: sha512-LBaGpXuI+SSd5HSGzyGJA0Gy09V2tl2G/r0lllTYqwt0RDZR6p7IrhdGVXZm6vI0oWEnih7yLC32krkVQrffgQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/radio@3.10.11': + resolution: {integrity: sha512-dclixp3fwNBbgpbi66x36YGaNwN7hI1nbuhkcnLAE0hWkTO8/wtKBgGqRKSfNV7MSiWlhBhhcdPcQ+V7q7AQIQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/select@3.6.12': + resolution: {integrity: sha512-5o/NAaENO/Gxs1yui5BHLItxLnDPSQJ5HDKycuD0/gGC17BboAGEY/F9masiQ5qwRPe3JEc0QfvMRq3yZVNXog==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/selection@3.20.1': + resolution: {integrity: sha512-K9MP6Rfg2yvFoY2Cr+ykA7bP4EBXlGaq5Dqfa1krvcXlEgMbQka5muLHdNXqjzGgcwPmS1dx1NECD15q63NtOw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/slider@3.6.2': + resolution: {integrity: sha512-5S9omr29Viv2PRyZ056ZlazGBM8wYNNHakxsTHcSdG/G8WQLrWspWIMiCd4B37cCTkt9ik6AQ6Y3muHGXJI0IQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/table@3.14.0': + resolution: {integrity: sha512-ALHIgAgSyHeyUiBDWIxmIEl9P4Gy5jlGybcT/rDBM8x7Ik/C/0Hd9f9Y5ubiZSpUGeAXlIaeEdSm0HBfYtQVRw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tabs@3.8.0': + resolution: {integrity: sha512-I8ctOsUKPviJ82xWAcZMvWqz5/VZurkE+W9n9wrFbCgHAGK/37bx+PM1uU/Lk4yKp8WrPYSFOEPil5liD+M+ew==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/toast@3.0.0': + resolution: {integrity: sha512-g7e4hNO9E6kOqyBeLRAfZBihp1EIQikmaH3Uj/OZJXKvIDKJlNlpvwstUIcmEuEzqA1Uru78ozxIVWh3pg9ubg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/toggle@3.8.2': + resolution: {integrity: sha512-5KPpT6zvt8H+WC9UbubhCTZltREeYb/3hKdl4YkS7BbSOQlHTFC0pOk8SsQU70Pwk26jeVHbl5le/N8cw00x8w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/toggle@3.8.3': + resolution: {integrity: sha512-4T2V3P1RK4zEFz4vJjUXUXyB0g4Slm6stE6Ry20fzDWjltuW42cD2lmrd7ccTO/CXFmHLECcXQLD4GEbOj0epA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tooltip@3.5.2': + resolution: {integrity: sha512-z81kwZWnnf2SE5/rHMrejH5uQu3dXUjrhIa2AGT038DNOmRyS9TkFBywPCiiE7tHpUg/rxZrPxx01JFGvOkmgg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tree@3.8.8': + resolution: {integrity: sha512-21WB9kKT9+/tr6B8Q4G53tZXl/3dftg5sZqCR6x055FGd2wGVbkxsLhQLmC+XVkTiLU9pB3BjvZ9eaSj1D8Wmg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tree@3.8.9': + resolution: {integrity: sha512-j/LLI9UvbqcfOdl2v9m3gET3etUxoQzv3XdryNAbSkg0jTx8/13Fgi/Xp98bUcNLfynfeGW5P/fieU71sMkGog==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/utils@3.10.5': + resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/utils@3.10.6': + resolution: {integrity: sha512-O76ip4InfTTzAJrg8OaZxKU4vvjMDOpfA/PGNOytiXwBbkct2ZeZwaimJ8Bt9W1bj5VsZ81/o/tW4BacbdDOMA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/virtualizer@4.3.1': + resolution: {integrity: sha512-yWRR9NhaD9NQezRUm1n0cQAYAOAYLOJSxVrCAKyhz/AYvG5JMMvFk3kzgrX8YZXoZKjybcdvy3YZ+jbCSprR6g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-three/drei@10.0.6': + resolution: {integrity: sha512-QtiAv/a1BaP+ZYfp8BphV8BMSO0O1BNhIPye3Zqm5iDqgX6JeiknPR6f2UmzUdBfPLwjZEaqjfULgJFvTUWgkg==} + peerDependencies: + '@react-three/fiber': ^9.0.0 + react: ^19 + react-dom: ^19 + three: '>=0.159' + peerDependenciesMeta: + react-dom: + optional: true + + '@react-three/fiber@9.1.2': + resolution: {integrity: sha512-k8FR9yVHV9kIF3iuOD0ds5hVymXYXfgdKklqziBVod9ZEJ8uk05Zjw29J/omU3IKeUfLNAIHfxneN3TUYM4I2w==} + peerDependencies: + expo: '>=43.0' + expo-asset: '>=8.4' + expo-file-system: '>=11.0' + expo-gl: '>=11.0' + react: ^19.0.0 + react-dom: ^19.0.0 + react-native: '>=0.78' + three: '>=0.156' + peerDependenciesMeta: + expo: + optional: true + expo-asset: + optional: true + expo-file-system: + optional: true + expo-gl: + optional: true + react-dom: + optional: true + react-native: + optional: true + + '@react-types/accordion@3.0.0-alpha.26': + resolution: {integrity: sha512-OXf/kXcD2vFlEnkcZy/GG+a/1xO9BN7Uh3/5/Ceuj9z2E/WwD55YwU3GFM5zzkZ4+DMkdowHnZX37XnmbyD3Mg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/breadcrumbs@3.7.11': + resolution: {integrity: sha512-pMvMLPFr7qs4SSnQ0GyX7i3DkWVs9wfm1lGPFbBO7pJLrHTSK/6Ii4cTEvP6d5o2VgjOVkvce9xCLWW5uosuEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/button@3.11.0': + resolution: {integrity: sha512-gJh5i0JiBiZGZGDo+tXMp6xbixPM7IKZ0sDuxTYBG49qNzzWJq0uNYltO3emwSVXFSsBgRV/Wu8kQGhfuN7wIw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/button@3.12.0': + resolution: {integrity: sha512-YrASNa+RqGQpzJcxNAahzNuTYVID1OE6HCorrEOXIyGS3EGogHsQmFs9OyThXnGHq6q4rLlA806/jWbP9uZdxA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/calendar@3.6.1': + resolution: {integrity: sha512-EMbFJX/3gD5j+R0qZEGqK+wlhBxMSHhGP8GqP9XGbpuJPE3w9/M/PVWdh8FUdzf9srYxPOq5NgiGI1JUJvdZqw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/calendar@3.7.0': + resolution: {integrity: sha512-RiEfX2ZTcvfRktQc5obOJtNTgW+UwjNOUW5yf9CLCNOSM07e0w5jtC1ewsOZZbcctMrMCljjL8niGWiBv1wQ1Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/checkbox@3.9.2': + resolution: {integrity: sha512-BruOLjr9s0BS2+G1Q2ZZ0ubnSTG54hZWr59lCHXaLxMdA/+KVsR6JVMQuYKsW0P8RDDlQXE/QGz3n9yB/Ara4A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/checkbox@3.9.3': + resolution: {integrity: sha512-h6wmK7CraKHKE6L13Ut+CtnjRktbMRhkCSorv7eg82M6p4PDhZ7mfDSh13IlGR4sryT8Ka+aOjOU+EvMrKiduA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/combobox@3.13.3': + resolution: {integrity: sha512-ASPLWuHke4XbnoOWUkNTguUa2cnpIsHPV0bcnfushC0yMSC4IEOlthstEbcdzjVUpWXSyaoI1R4POXmdIP53Nw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/datepicker@3.11.0': + resolution: {integrity: sha512-GAYgPzqKvd1lR2sLYYMlUkNg2+QoM2uVUmpeQLP1SbYpDr1y8lG5cR54em1G4X/qY4+nCWGiwhRC2veP0D0kfA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/dialog@3.5.17': + resolution: {integrity: sha512-rKe2WrT272xuCH13euegBGjJAORYXJpHsX2hlu/f02TmMG4nSLss9vKBnY2N7k7nci65k5wDTW6lcsvQ4Co5zQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/form@3.7.10': + resolution: {integrity: sha512-PPn1OH/QlQLPaoFqp9EMVSlNk41aiNLwPaMyRhzYvFBGLmtbuX+7JCcH2DgV1peq3KAuUKRDdI2M1iVdHYwMPw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/grid@3.3.0': + resolution: {integrity: sha512-9IXgD5qXXxz+S9RK+zT8umuTCEcE4Yfdl0zUGyTCB8LVcPEeZuarLGXZY/12Rkbd8+r6MUIKTxMVD3Nq9X5Ksg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/grid@3.3.1': + resolution: {integrity: sha512-bPDckheJiHSIzSeSkLqrO6rXRLWvciFJr9rpCjq/+wBj6HsLh2iMpkB/SqmRHTGpPlJvlu0b7AlxK1FYE0QSKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/link@3.5.11': + resolution: {integrity: sha512-aX9sJod9msdQaOT0NUTYNaBKSkXGPazSPvUJ/Oe4/54T3sYkWeRqmgJ84RH55jdBzpbObBTg8qxKiPA26a1q9Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/link@3.6.0': + resolution: {integrity: sha512-BQ5Tktb+fUxvtqksAJZuP8Z/bpmnQ/Y/zgwxfU0OKmIWkKMUsXY+e0GBVxwFxeh39D77stpVxRsTl7NQrjgtSw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/listbox@3.6.0': + resolution: {integrity: sha512-+1ugDKTxson/WNOQZO4BfrnQ6cGDt+72mEytXMsSsd4aEC+x3RyUv6NKwdOl4n602cOreo0MHtap1X2BOACVoQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/menu@3.10.0': + resolution: {integrity: sha512-DKMqEmUmarVCK0jblNkSlzSH53AAsxWCX9RaKZeP9EnRs2/l1oZRuiQVHlOQRgYwEigAXa2TrwcX4nnxZ+U36Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/menu@3.9.15': + resolution: {integrity: sha512-vNEeGxKLYBJc3rwImnEhSVzeIrhUSSRYRk617oGZowX3NkWxnixFGBZNy0w8j0z8KeNz3wRM4xqInRord1mDbw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/numberfield@3.8.9': + resolution: {integrity: sha512-YqhawYUULiZnUba0/9Vaps8WAT2lto4V6CD/X7s048jiOrHiiIX03RDEAQuKOt1UYdzBJDHfSew9uGMyf/nC0g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/overlays@3.8.13': + resolution: {integrity: sha512-xgT843KIh1otvYPQ6kCGTVUICiMF5UQ7SZUQZd4Zk3VtiFIunFVUvTvL03cpt0026UmY7tbv7vFrPKcT6xjsjw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/overlays@3.8.14': + resolution: {integrity: sha512-XJS67KHYhdMvPNHXNGdmc85gE+29QT5TwC58V4kxxHVtQh9fYzEEPzIV8K84XWSz04rRGe3fjDgRNbcqBektWQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/progress@3.5.10': + resolution: {integrity: sha512-YDQExymdgORnSvXTtOW7SMhVOinlrD3bAlyCxO+hSAVaI1Ax38pW5dUFf6H85Jn7hLpjPQmQJvNsfsJ09rDFjQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/radio@3.8.7': + resolution: {integrity: sha512-K620hnDmSR7u9cZfwJIfoLvmZS1j9liD7nDXBm+N6aiq9E+8sw312sIEX5iR2TrQ4xovvJQZN7DWxPVr+1LfWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/select@3.9.10': + resolution: {integrity: sha512-vvC5+cBSOu6J6lm74jhhP3Zvo1JO8m0FNX+Q95wapxrhs2aYYeMIgVuvNKeOuhVqzpBZxWmblBjCVNzCArZOaQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/select@3.9.11': + resolution: {integrity: sha512-uEpQCgDlrq/5fW05FgNEsqsqpvZVKfHQO9Mp7OTqGtm4UBNAbcQ6hOV7MJwQCS25Lu2luzOYdgqDUN8eAATJVQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/shared@3.28.0': + resolution: {integrity: sha512-9oMEYIDc3sk0G5rysnYvdNrkSg7B04yTKl50HHSZVbokeHpnU0yRmsDaWb9B/5RprcKj8XszEk5guBO8Sa/Q+Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/shared@3.29.0': + resolution: {integrity: sha512-IDQYu/AHgZimObzCFdNl1LpZvQW/xcfLt3v20sorl5qRucDVj4S9os98sVTZ4IRIBjmS+MkjqpR5E70xan7ooA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/slider@3.7.10': + resolution: {integrity: sha512-Yb8wbpu2gS7AwvJUuz0IdZBRi6eIBZq32BSss4UHX0StA8dtR1/K4JeTsArxwiA3P0BA6t0gbR6wzxCvVA9fRw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/switch@3.5.10': + resolution: {integrity: sha512-YyNhx4CvuJ0Rvv7yMuQaqQuOIeg+NwLV00NHHJ+K0xEANSLcICLOLPNMOqRIqLSQDz5vDI705UKk8gVcxqPX5g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/table@3.11.0': + resolution: {integrity: sha512-83cGyszL+sQ0uFNZvrnvDMg2KIxpe3l5U48IH9lvq2NC41Y4lGG0d7sBU6wgcc3vnQ/qhOE5LcbceGKEi2YSyw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/tabs@3.3.13': + resolution: {integrity: sha512-jqaK2U+WKChAmYBMO8QxQlFaIM8zDRY9+ignA1HwIyRw7vli4Mycc4RcMxTPm8krvgo+zuVrped9QB+hsDjCsQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/textfield@3.12.0': + resolution: {integrity: sha512-B0vzCIBUbYWrlFk+odVXrSmPYwds9G+G+HiOO/sJr4eZ4RYiIqnFbZ7qiWhWXaou7vi71iXVqKQ8mxA6bJwPEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/textfield@3.12.1': + resolution: {integrity: sha512-6YTAMCKjEGuXg0A4bZA77j5QJ1a6yFviMUWsCIL6Dxq5K3TklzVsbAduSbHomPPuvkNTBSW4+TUJrVSnoTjMNA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/tooltip@3.4.15': + resolution: {integrity: sha512-qiYwQLiEwYqrt/m8iQA8abl9k/9LrbtMNoEevL4jN4H0I5NrG55E78GYTkSzBBYmhBO4KnPVT0SfGM1tYaQx/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@supabase/auth-js@2.69.1': + resolution: {integrity: sha512-FILtt5WjCNzmReeRLq5wRs3iShwmnWgBvxHfqapC/VoljJl+W8hDAyFmf1NVw3zH+ZjZ05AKxiKxVeb0HNWRMQ==} + + '@supabase/functions-js@2.4.4': + resolution: {integrity: sha512-WL2p6r4AXNGwop7iwvul2BvOtuJ1YQy8EbOd0dhG1oN1q8el/BIRSFCFnWAMM/vJJlHWLi4ad22sKbKr9mvjoA==} + + '@supabase/node-fetch@2.6.15': + resolution: {integrity: sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==} + engines: {node: 4.x || >=6.0.0} + + '@supabase/postgrest-js@1.19.4': + resolution: {integrity: sha512-O4soKqKtZIW3olqmbXXbKugUtByD2jPa8kL2m2c1oozAO11uCcGrRhkZL0kVxjBLrXHE0mdSkFsMj7jDSfyNpw==} + + '@supabase/realtime-js@2.11.2': + resolution: {integrity: sha512-u/XeuL2Y0QEhXSoIPZZwR6wMXgB+RQbJzG9VErA3VghVt7uRfSVsjeqd7m5GhX3JR6dM/WRmLbVR8URpDWG4+w==} + + '@supabase/ssr@0.6.1': + resolution: {integrity: sha512-QtQgEMvaDzr77Mk3vZ3jWg2/y+D8tExYF7vcJT+wQ8ysuvOeGGjYbZlvj5bHYsj/SpC0bihcisnwPrM4Gp5G4g==} + peerDependencies: + '@supabase/supabase-js': ^2.43.4 + + '@supabase/storage-js@2.7.1': + resolution: {integrity: sha512-asYHcyDR1fKqrMpytAS1zjyEfvxuOIp1CIXX7ji4lHHcJKqyk+sLl/Vxgm4sN6u8zvuUtae9e4kDxQP2qrwWBA==} + + '@supabase/supabase-js@2.49.4': + resolution: {integrity: sha512-jUF0uRUmS8BKt37t01qaZ88H9yV1mbGYnqLeuFWLcdV+x1P4fl0yP9DGtaEhFPZcwSom7u16GkLEH9QJZOqOkw==} + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} + + '@tailwindcss/node@4.1.4': + resolution: {integrity: sha512-MT5118zaiO6x6hNA04OWInuAiP1YISXql8Z+/Y8iisV5nuhM8VXlyhRuqc2PEviPszcXI66W44bCIk500Oolhw==} + + '@tailwindcss/oxide-android-arm64@4.1.4': + resolution: {integrity: sha512-xMMAe/SaCN/vHfQYui3fqaBDEXMu22BVwQ33veLc8ep+DNy7CWN52L+TTG9y1K397w9nkzv+Mw+mZWISiqhmlA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@tailwindcss/oxide-darwin-arm64@4.1.4': + resolution: {integrity: sha512-JGRj0SYFuDuAGilWFBlshcexev2hOKfNkoX+0QTksKYq2zgF9VY/vVMq9m8IObYnLna0Xlg+ytCi2FN2rOL0Sg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tailwindcss/oxide-darwin-x64@4.1.4': + resolution: {integrity: sha512-sdDeLNvs3cYeWsEJ4H1DvjOzaGios4QbBTNLVLVs0XQ0V95bffT3+scptzYGPMjm7xv4+qMhCDrkHwhnUySEzA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tailwindcss/oxide-freebsd-x64@4.1.4': + resolution: {integrity: sha512-VHxAqxqdghM83HslPhRsNhHo91McsxRJaEnShJOMu8mHmEj9Ig7ToHJtDukkuLWLzLboh2XSjq/0zO6wgvykNA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4': + resolution: {integrity: sha512-OTU/m/eV4gQKxy9r5acuesqaymyeSCnsx1cFto/I1WhPmi5HDxX1nkzb8KYBiwkHIGg7CTfo/AcGzoXAJBxLfg==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tailwindcss/oxide-linux-arm64-gnu@4.1.4': + resolution: {integrity: sha512-hKlLNvbmUC6z5g/J4H+Zx7f7w15whSVImokLPmP6ff1QqTVE+TxUM9PGuNsjHvkvlHUtGTdDnOvGNSEUiXI1Ww==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tailwindcss/oxide-linux-arm64-musl@4.1.4': + resolution: {integrity: sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tailwindcss/oxide-linux-x64-gnu@4.1.4': + resolution: {integrity: sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tailwindcss/oxide-linux-x64-musl@4.1.4': + resolution: {integrity: sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tailwindcss/oxide-wasm32-wasi@4.1.4': + resolution: {integrity: sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + + '@tailwindcss/oxide-win32-arm64-msvc@4.1.4': + resolution: {integrity: sha512-VlnhfilPlO0ltxW9/BgfLI5547PYzqBMPIzRrk4W7uupgCt8z6Trw/tAj6QUtF2om+1MH281Pg+HHUJoLesmng==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tailwindcss/oxide-win32-x64-msvc@4.1.4': + resolution: {integrity: sha512-+7S63t5zhYjslUGb8NcgLpFXD+Kq1F/zt5Xv5qTv7HaFTG/DHyHD9GA6ieNAxhgyA4IcKa/zy7Xx4Oad2/wuhw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tailwindcss/oxide@4.1.4': + resolution: {integrity: sha512-p5wOpXyOJx7mKh5MXh5oKk+kqcz8T+bA3z/5VWWeQwFrmuBItGwz8Y2CHk/sJ+dNb9B0nYFfn0rj/cKHZyjahQ==} + engines: {node: '>= 10'} + + '@tailwindcss/postcss@4.1.4': + resolution: {integrity: sha512-bjV6sqycCEa+AQSt2Kr7wpGF1bOZJ5wsqnLEkqSbM/JEHxx/yhMH8wHmdkPyApF9xhHeMSwnnkDUUMMM/hYnXw==} + + '@tanstack/query-core@5.75.5': + resolution: {integrity: sha512-kPDOxtoMn2Ycycb76Givx2fi+2pzo98F9ifHL/NFiahEDpDwSVW6o12PRuQ0lQnBOunhRG5etatAhQij91M3MQ==} + + '@tanstack/react-query@5.75.5': + resolution: {integrity: sha512-QrLCJe40BgBVlWdAdf2ZEVJ0cISOuEy/HKupId1aTKU6gPJZVhSvZpH+Si7csRflCJphzlQ77Yx6gUxGW9o0XQ==} + peerDependencies: + react: ^18 || ^19 + + '@tanstack/react-virtual@3.11.3': + resolution: {integrity: sha512-vCU+OTylXN3hdC8RKg68tPlBPjjxtzon7Ys46MgrSLE+JhSjSTPvoQifV6DQJeJmA8Q3KT6CphJbejupx85vFw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@tanstack/virtual-core@3.11.3': + resolution: {integrity: sha512-v2mrNSnMwnPJtcVqNvV0c5roGCBqeogN8jDtgtuHCphdwBasOZ17x8UV8qpHUh+u0MLfX43c0uUHKje0s+Zb0w==} + + '@tweenjs/tween.js@23.1.3': + resolution: {integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==} + + '@types/codemirror@5.60.15': + resolution: {integrity: sha512-dTOvwEQ+ouKJ/rE9LT1Ue2hmP6H1mZv5+CCnNWu2qtiOe2LQa9lCprEY20HxiDmV/Bxh+dXjywmy5aKvoGjULA==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/draco3d@1.4.10': + resolution: {integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/katex@0.16.7': + resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} + + '@types/lodash.debounce@4.0.9': + resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==} + + '@types/lodash@4.17.16': + resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/node@22.14.1': + resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==} + + '@types/offscreencanvas@2019.7.3': + resolution: {integrity: sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==} + + '@types/phoenix@1.6.6': + resolution: {integrity: sha512-PIzZZlEppgrpoT2QgbnDU+MMzuR6BbCjllj0bM70lWoejMeNJAxCchxnv7J3XFkI8MpygtRpzXrIlmWUBclP5A==} + + '@types/react-dom@19.1.2': + resolution: {integrity: sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==} + peerDependencies: + '@types/react': ^19.0.0 + + '@types/react-reconciler@0.28.9': + resolution: {integrity: sha512-HHM3nxyUZ3zAylX8ZEyrDNd2XZOnQ0D5XfunJF5FLQnZbHHYq4UWvW1QfelQNXv1ICNkwYhfxjwfnqivYB6bFg==} + peerDependencies: + '@types/react': '*' + + '@types/react-syntax-highlighter@15.5.13': + resolution: {integrity: sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==} + + '@types/react@19.1.2': + resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==} + + '@types/stats.js@0.17.3': + resolution: {integrity: sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==} + + '@types/tern@0.23.9': + resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==} + + '@types/three@0.175.0': + resolution: {integrity: sha512-ldMSBgtZOZ3g9kJ3kOZSEtZIEITmJOzu8eKVpkhf036GuNkM4mt0NXecrjCn5tMm1OblOF7dZehlaDypBfNokw==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/webxr@0.5.22': + resolution: {integrity: sha512-Vr6Stjv5jPRqH690f5I5GLjVk8GSsoQSYJ2FVd/3jJF7KaqfwPi3ehfBS96mlQ2kPCwZaX6U0rG2+NGHBKkA/A==} + + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + + '@typescript-eslint/eslint-plugin@8.30.1': + resolution: {integrity: sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/parser@8.30.1': + resolution: {integrity: sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/scope-manager@8.30.1': + resolution: {integrity: sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/type-utils@8.30.1': + resolution: {integrity: sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/types@8.30.1': + resolution: {integrity: sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.30.1': + resolution: {integrity: sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@8.30.1': + resolution: {integrity: sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@8.30.1': + resolution: {integrity: sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@uiw/codemirror-extensions-basic-setup@4.23.10': + resolution: {integrity: sha512-zpbmSeNs3OU/f/Eyd6brFnjsBUYwv2mFjWxlAsIRSwTlW+skIT60rQHFBSfsj/5UVSxSLWVeUYczN7AyXvgTGQ==} + peerDependencies: + '@codemirror/autocomplete': '>=6.0.0' + '@codemirror/commands': '>=6.0.0' + '@codemirror/language': '>=6.0.0' + '@codemirror/lint': '>=6.0.0' + '@codemirror/search': '>=6.0.0' + '@codemirror/state': '>=6.0.0' + '@codemirror/view': '>=6.0.0' + + '@uiw/codemirror-theme-abcdef@4.23.10': + resolution: {integrity: sha512-OXvzM2bR1EvZfLBnm/ndM1rujplJ9zV4nd7IV0fKU+RsVu94mPeKX71+fag0AQVllU7BGslg6zw8YPG4FVqLBA==} + + '@uiw/codemirror-theme-abyss@4.23.10': + resolution: {integrity: sha512-jVumFsnhIXoxHrhXckoLlKPuuYf9q8NeuAQ23MqNtw+K47+9AAk2kQl8/WJDIlXZV6CLN7QfjnMraneYkQFDtg==} + + '@uiw/codemirror-theme-androidstudio@4.23.10': + resolution: {integrity: sha512-rfcqQIxqz+xO8qmEldrsOxIviTs+tNV6Sa6kfxlYmwRxFyx9btfWPW9eSNLIXUO0S9SLhHezpEhgtPcBDxhNCA==} + + '@uiw/codemirror-theme-andromeda@4.23.10': + resolution: {integrity: sha512-Cm+5m1szUgdV9+cjYYyVR+r/qE11roeiq/Fr/bo7H7fcLEk24b24tVrc5O35l1JDoaNpNyXw4Zn3JP4hTcl/CQ==} + + '@uiw/codemirror-theme-atomone@4.23.10': + resolution: {integrity: sha512-ugM/OY9pVQM2CQIdRR7BL0hu6j+VO0+o8fh2tCzaixMjj7VT4RZV06MMlzlgDBwU6SgEne0GA9oz3cS1ez584w==} + + '@uiw/codemirror-theme-aura@4.23.10': + resolution: {integrity: sha512-CRFeDb1PGRlZC691sxJXA37F0E3Wt5/jate+7GlsWBR6XDf6c/co4g5VqjSvp+ZHeXe1rhRqqCxKplpcWwm1GQ==} + + '@uiw/codemirror-theme-basic@4.23.10': + resolution: {integrity: sha512-S5sgMzRUbzyZP5V5SpmlAno/RawuI2UhK0JxrlGOkmpTkSQ5ksqC8Nxuh1/ML4nr8bj+arwWv+PasaBG185YWg==} + + '@uiw/codemirror-theme-bbedit@4.23.10': + resolution: {integrity: sha512-QECTPDdzGJ1ttBlRsEJ9oBJ9uXrB+wg+yE2NyQ2qjJJxxFLNk0nEp5YqdV9uqt17c1pd1+elVKWaSt2NO9RveQ==} + + '@uiw/codemirror-theme-bespin@4.23.10': + resolution: {integrity: sha512-ldijcA2n08hw/vIOuJ9DRzhMKEgprWNpV3vn6ITjHPhNqmDbOpgX7DKnErOzoGbEPppTRccNn8PGhJSJREVLWA==} + + '@uiw/codemirror-theme-console@4.23.10': + resolution: {integrity: sha512-0HyT7g6zeFHwRmwimxGaJtf+VawazADpgXDO4sHv4fn7sOC1DYZqpWcU3ePubPNcDk1pv8EturOPIYOw3C+Kgw==} + + '@uiw/codemirror-theme-copilot@4.23.10': + resolution: {integrity: sha512-qURBFMNi4stunAMEyIlSz7+E+SJsFTcuCiNO1j2SWxyoy/azAfUFElXgNjadj6lizEjwVnzQGXUrRvAPcpI6Xw==} + + '@uiw/codemirror-theme-darcula@4.23.10': + resolution: {integrity: sha512-dOTRiEmgrwMsOEOdmcZX/JPFh0jdgEFoDUgZwIRiS6QaIZiuEcuGnPBkqxrV1w6VIeRx8Jc+ZVYg1Igrf9QcBg==} + + '@uiw/codemirror-theme-dracula@4.23.10': + resolution: {integrity: sha512-2xTLHT+QwKrY1NKXcbpB3wPoOdR1JVCeCQIT0f4dupudIcJp+XuIDwUX28fHqc5mwk/9pSbiopW2f+hMwL5Cfw==} + + '@uiw/codemirror-theme-duotone@4.23.10': + resolution: {integrity: sha512-h2lIubEMNBZNEvYVMjt08QUt0DhFKXIl44hTU+a60AoL+YLlDJw26KlNbUvHxyqTDZwaX2TZKR5APF14lU+sYA==} + + '@uiw/codemirror-theme-eclipse@4.23.10': + resolution: {integrity: sha512-5ka+NiAknu7NIPerDMkoRrO7p5g6SIkuN0V51A5gjW6wDZtGTHzsLTbU0HwLVaYqm8tKxb0RHhtgnCTPlrN8XQ==} + + '@uiw/codemirror-theme-github@4.23.10': + resolution: {integrity: sha512-jTg2sHAcU1d+8x0O+EBDI71rtJ8PWKIW8gzy+SW4wShQTAdsqGHk5y1ynt3KIeoaUkqngLqAK4SkhPaUKlqZqg==} + + '@uiw/codemirror-theme-gruvbox-dark@4.23.10': + resolution: {integrity: sha512-CZVNq/2BTQP87ICPtRlqplq4iZrnXp531dJLjCtMaRR7xTpyi/wDhL36XOVydQQzmDooJZSp54NFR8uxIMtQ7A==} + + '@uiw/codemirror-theme-kimbie@4.23.10': + resolution: {integrity: sha512-eyvhlDHMfms3hGYY9zalb146gqvHKmv+x08FSqRktjMTRA7/SjnG6eg1ks0OqdRsipE7UiM7niqswB+yqa8F9Q==} + + '@uiw/codemirror-theme-material@4.23.10': + resolution: {integrity: sha512-RN+K7Vc/qea+ky5w0KVCtfwfVqtedicOMKxeBu/fs82tyU5Q5oQ2UlS5Y94Sv05BRkHYluOvMwypUwWkSq2q6g==} + + '@uiw/codemirror-theme-monokai-dimmed@4.23.10': + resolution: {integrity: sha512-9PsCWFviRjWo0WchGj3BEY2/xIJjDP0fiM4sRuaS8FZ0LSC938Izd7o1x2t01SaOYmJyCV516sSjOv+WCFnz0w==} + + '@uiw/codemirror-theme-monokai@4.23.10': + resolution: {integrity: sha512-P1KEAiXA6UlQdqwSTpPZwB/VAIaoqtu4oigSUgL9mt+UKzhKyurANFypYSEHmGDuweq80lrOUXCnPc4mOR9xuQ==} + + '@uiw/codemirror-theme-noctis-lilac@4.23.10': + resolution: {integrity: sha512-YWi51uw8VqgU8x21b277HJuvjHh9G2qHueatpd7a/h7LdW0elxT3VqkAos8ludjMxWAC3lypUFht76wDWVXXtQ==} + + '@uiw/codemirror-theme-nord@4.23.10': + resolution: {integrity: sha512-GUGzb0eUZLPzneTmbfk7qWz812B1ak97XOUhRZUPnzVHztgqIVZcwYRf2XkoAySNHU23szZsxxyNZeQ2nAZs6A==} + + '@uiw/codemirror-theme-okaidia@4.23.10': + resolution: {integrity: sha512-9Ccb96a9HPz4a3U0iH6CTHpLVfAeVCSlorp+McBp2QcoJIo1kwZ3hu34MDupW0m9jfdLddAlCEUuK3Kmre8ClQ==} + + '@uiw/codemirror-theme-quietlight@4.23.10': + resolution: {integrity: sha512-ZBTFmWITpVSGL04QxcGriP3GRMk8VmYM1kk1Eb2PevEmPVBCBlBMB58Px+YBHv6MbpjQ+xes6eVIsg3oblpINQ==} + + '@uiw/codemirror-theme-red@4.23.10': + resolution: {integrity: sha512-XHhfbOVI10NZpXRXgXzarHe8VobFxh/7gEGGY84ZnGg4+/7OHtChSSRCkNba/wl987JHfZlx40bpZDOMQ4NDug==} + + '@uiw/codemirror-theme-solarized@4.23.10': + resolution: {integrity: sha512-Uj2Qip1aIrjsUB0Z/L2i2mVaQXmOUeoz//wElMfU7ek+21cbVKHvOzHiDWHKb2DNWkvGWOdl7WqqK5WyGhioeQ==} + + '@uiw/codemirror-theme-sublime@4.23.10': + resolution: {integrity: sha512-iU6AuaLsztCwNaEcvVtDBqk+zj46EevI8uccnDGP2orzQJwk+n9OYAnbMiLNXT8W8x6YCffQOJpcxN+Po9m8BQ==} + + '@uiw/codemirror-theme-tokyo-night-day@4.23.10': + resolution: {integrity: sha512-fGa05Pv3oWY799UyWUvv1ug/DM0Z0O6J14aPt6jewVe6MOJd9JHcMZ2tVm35k+wCNwQuflHDM1Z5EfT//004BA==} + + '@uiw/codemirror-theme-tokyo-night-storm@4.23.10': + resolution: {integrity: sha512-ZSWtQFKXl5M112HANpmMQljNB2H/M5mEO+KXMz+7+kMQB5+QIq5eNlCxFmDQIWvpMayXbjkubeB/QrqnHFxQZg==} + + '@uiw/codemirror-theme-tokyo-night@4.23.10': + resolution: {integrity: sha512-SXPU+E1uJiJMdhtCHf2FiPqUPWjAckFaeUF3TP6iP7oyoU4wFzBTfzNFSztaRnpnmsY4igRrqMLQGwTUtWdByQ==} + + '@uiw/codemirror-theme-tomorrow-night-blue@4.23.10': + resolution: {integrity: sha512-NTMLMTjzAXRu4KE+N+GZxS8YDwIdaWAiSiP+kY02cPocHa1Bw6L8FpPhq6MOQxY9U+hzdv0erRWpMxAglSZguA==} + + '@uiw/codemirror-theme-vscode@4.23.10': + resolution: {integrity: sha512-d9qGC6/yq6d+REMZUs7jrs2kGZoAAyNu0USOxsDa3Mqhh/dSUfC+ErDqwF02OfylsdcuPSzelu99EAvkjorpmQ==} + + '@uiw/codemirror-theme-white@4.23.10': + resolution: {integrity: sha512-Nb6XJ3lQBAyMKCRGT2FJU1O6+RhCXiIVqrcfW7/A6zFlgktBMPQPK+YHkt5vUzYN1M58nL21auiMruUK+ROJGQ==} + + '@uiw/codemirror-theme-xcode@4.23.10': + resolution: {integrity: sha512-meYMRLr0mTqGZerihSTKpjceRkxbFfpnXX9RyDZFwloydxzWY/6iGEt1/RMY+cWoxgjBYSiunqtU0qgQH0WAuA==} + + '@uiw/codemirror-themes-all@4.23.10': + resolution: {integrity: sha512-jIjm0HwmYsAJZqDtP+lH7b128A8Ev1mNthPu5HqzHtoKtzRr/oR5vqptZj8YpOHVj1Ip2wAq/V1boBE7uQMhdA==} + + '@uiw/codemirror-themes@4.23.10': + resolution: {integrity: sha512-dU0UgEEgEXCAYpxuVDQ6fovE82XsqgHZckTJOH6Bs8xCi3Z7dwBKO4pXuiA8qGDwTOXOMjSzfi+pRViDm7OfWw==} + peerDependencies: + '@codemirror/language': '>=6.0.0' + '@codemirror/state': '>=6.0.0' + '@codemirror/view': '>=6.0.0' + + '@uiw/react-codemirror@4.23.10': + resolution: {integrity: sha512-AbN4eVHOL4ckRuIXpZxkzEqL/1ChVA+BSdEnAKjIB68pLQvKsVoYbiFP8zkXkYc4+Fcgq5KbAjvYqdo4ewemKw==} + peerDependencies: + '@babel/runtime': '>=7.11.0' + '@codemirror/state': '>=6.0.0' + '@codemirror/theme-one-dark': '>=6.0.0' + '@codemirror/view': '>=6.0.0' + codemirror: '>=6.0.0' + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + '@use-gesture/core@10.3.1': + resolution: {integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==} + + '@use-gesture/react@10.3.1': + resolution: {integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==} + peerDependencies: + react: '>= 16.8.0' + + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} + + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} + + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} + + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} + + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} + + '@webassemblyjs/helper-wasm-section@1.14.1': + resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} + + '@webassemblyjs/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + + '@webassemblyjs/leb128@1.13.2': + resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} + + '@webassemblyjs/utf8@1.13.2': + resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} + + '@webassemblyjs/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + + '@webassemblyjs/wasm-gen@1.14.1': + resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} + + '@webassemblyjs/wasm-opt@1.14.1': + resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} + + '@webassemblyjs/wasm-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + + '@webgpu/types@0.1.60': + resolution: {integrity: sha512-8B/tdfRFKdrnejqmvq95ogp8tf52oZ51p3f4QD5m5Paey/qlX4Rhhy5Y8tgFMi7Ms70HzcMMw3EQjH/jdhTwlA==} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.14.1: + resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + astring@1.9.0: + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} + hasBin: true + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axe-core@4.10.3: + resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==} + engines: {node: '>=4'} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bidi-js@1.0.3: + resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.4: + resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camera-controls@2.10.1: + resolution: {integrity: sha512-KnaKdcvkBJ1Irbrzl8XD6WtZltkRjp869Jx8c0ujs9K+9WD+1D7ryBsCiVqJYUqt6i/HR5FxT7RLASieUD+Q5w==} + peerDependencies: + three: '>=0.126.1' + + caniuse-lite@1.0.30001714: + resolution: {integrity: sha512-mtgapdwDLSSBnCI3JokHM7oEQBLxiJKVRtg10AxM1AyeiKcM96f0Mkbqeq+1AbiCtvMcHRulAAEMu693JrSWqg==} + + caniuse-lite@1.0.30001715: + resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + codemirror@6.0.1: + resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==} + + collapse-white-space@2.1.0: + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color2k@2.0.3: + resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@13.1.0: + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} + engines: {node: '>=18'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + compute-scroll-into-view@3.1.1: + resolution: {integrity: sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + cookie@1.0.2: + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} + engines: {node: '>=18'} + + crelt@1.0.6: + resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + + cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decimal.js@10.5.0: + resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} + + decode-named-character-reference@1.1.0: + resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-gpu@5.0.70: + resolution: {integrity: sha512-bqerEP1Ese6nt3rFkwPnGbsUF9a4q+gMmpTVVOEzoCyeCc+y7/RvJnQZJx1JwhgQI5Ntg0Kgat8Uu7XpBqnz1w==} + + detect-libc@2.0.3: + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + engines: {node: '>=8'} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + draco3d@1.5.7: + resolution: {integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + electron-to-chromium@1.5.140: + resolution: {integrity: sha512-o82Rj+ONp4Ip7Cl1r7lrqx/pXhbp/lh9DpKcMNscFJdh8ebyRofnc7Sh01B4jx403RI0oqTBvlZ7OBIZLMr2+Q==} + + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + enhanced-resolve@5.18.1: + resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} + engines: {node: '>=10.13.0'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + es-abstract@1.23.9: + resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-iterator-helpers@1.2.1: + resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.6.0: + resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esast-util-from-estree@2.0.0: + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} + + esast-util-from-js@2.0.1: + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-config-prettier@10.1.2: + resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-module-utils@2.12.0: + resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-es@3.0.1: + resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} + engines: {node: '>=8.10.0'} + peerDependencies: + eslint: '>=4.19.1' + + eslint-plugin-import@2.31.0: + resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jsx-a11y@6.10.2: + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 + + eslint-plugin-node@11.1.0: + resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} + engines: {node: '>=8.10.0'} + peerDependencies: + eslint: '>=5.16.0' + + eslint-plugin-prettier@5.2.6: + resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + + eslint-plugin-react-hooks@5.2.0: + resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + + eslint-plugin-react@7.37.5: + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + + eslint-plugin-unused-imports@4.1.4: + resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 + eslint: ^9.0.0 || ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-scope@8.3.0: + resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + + eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.25.0: + resolution: {integrity: sha512-MsBdObhM4cEwkzCiraDv7A6txFXEqtNXOb877TsSp2FCkBNl8JfVQrmiuDqC1IkejT6JLPzYBXx/xAiYhyzgGA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-util-attach-comments@3.0.0: + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + + estree-util-build-jsx@3.0.1: + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-util-scope@1.0.0: + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} + + estree-util-to-js@2.0.0: + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + + estree-util-visit@2.0.0: + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fault@1.0.4: + resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + + fflate@0.6.10: + resolution: {integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==} + + fflate@0.8.2: + resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + framer-motion@12.9.2: + resolution: {integrity: sha512-R0O3Jdqbfwywpm45obP+8sTgafmdEcUoShQTAV+rB5pi+Y1Px/FYL5qLLRe5tPtBdN1J4jos7M+xN2VV2oEAbQ==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@16.0.0: + resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + glsl-noise@0.0.0: + resolution: {integrity: sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-util-from-dom@5.0.1: + resolution: {integrity: sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==} + + hast-util-from-html-isomorphic@2.0.0: + resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==} + + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + + hast-util-heading-rank@3.0.0: + resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} + + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-sanitize@5.0.2: + resolution: {integrity: sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==} + + hast-util-to-estree@3.1.3: + resolution: {integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==} + + hast-util-to-jsx-runtime@2.3.6: + resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==} + + hast-util-to-string@3.0.1: + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} + + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + + highlight.js@10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + + highlightjs-vue@1.0.0: + resolution: {integrity: sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==} + + hls.js@1.6.2: + resolution: {integrity: sha512-rx+pETSCJEDThm/JCm8CuadcAC410cVjb1XVXFNDKFuylaayHk1+tFxhkjvnMDAfqsJHxZXDAJ3Uc2d5xQyWlQ==} + + html-url-attributes@3.0.1: + resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + immediate@3.0.6: + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inline-style-parser@0.2.4: + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} + + input-otp@1.4.1: + resolution: {integrity: sha512-+yvpmKYKHi9jIGngxagY9oWiiblPB7+nEO75F2l2o4vs+6vpPZZmUl4tBNYuTCvQjhvEIbdNeJu70bhfYP2nbw==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + intl-messageformat@10.7.16: + resolution: {integrity: sha512-UmdmHUmp5CIKKjSoE10la5yfU+AYJAaiYLsodbjL4lji83JNvgOQUjGaGhGrpFCb0Uh7sl7qfP1IyILa8Z40ug==} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-any-array@2.0.1: + resolution: {integrity: sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-fullwidth-code-point@5.0.0: + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + + its-fine@2.0.0: + resolution: {integrity: sha512-KLViCmWx94zOvpLwSlsx6yOCeMhZYaxrJV87Po5k/FoZzcPSahvK5qJ7fYhS61sZi5ikmh2S3Hz55A2l3U69ng==} + peerDependencies: + react: ^19.0.0 + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jiti@2.4.2: + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + hasBin: true + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + katex@0.16.22: + resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} + hasBin: true + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lie@3.3.0: + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + + lightningcss-darwin-arm64@1.29.2: + resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.29.2: + resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.29.2: + resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.29.2: + resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.29.2: + resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.29.2: + resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-x64-gnu@1.29.2: + resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.29.2: + resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-win32-arm64-msvc@1.29.2: + resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.29.2: + resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.29.2: + resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==} + engines: {node: '>= 12.0.0'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lint-staged@15.5.1: + resolution: {integrity: sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==} + engines: {node: '>=18.12.0'} + hasBin: true + + listr2@8.3.2: + resolution: {integrity: sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==} + engines: {node: '>=18.0.0'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lowlight@1.20.0: + resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + + lucide-react@0.501.0: + resolution: {integrity: sha512-E2KoyhW59fCb/yUbR3rbDer83fqn7a8NG91ZhIot2yWaPHjPyGzzsNKh40N//GezYShAuycf3TcQksRQznIsRw==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + maath@0.10.8: + resolution: {integrity: sha512-tRvbDF0Pgqz+9XUa4jjfgAQ8/aPKmQdWXilFu2tMy4GWj4NOsx99HlULO4IeREfbO3a0sA145DZYyvXPkybm0g==} + peerDependencies: + '@types/three': '>=0.134.0' + three: '>=0.134.0' + + markdown-extensions@2.0.0: + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + markdown-to-jsx@7.7.4: + resolution: {integrity: sha512-1bSfXyBKi+EYS3YY+e0Csuxf8oZ3decdfhOav/Z7Wrk89tjudyL5FOmwZQUoy0/qVXGUl+6Q3s2SWtpDEWITfQ==} + engines: {node: '>= 10'} + peerDependencies: + react: '>= 0.14.0' + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-math@3.0.0: + resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==} + + mdast-util-mdx-expression@2.0.1: + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} + + mdast-util-mdx-jsx@3.2.0: + resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==} + + mdast-util-mdx@3.0.0: + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + meshline@3.3.1: + resolution: {integrity: sha512-/TQj+JdZkeSUOl5Mk2J7eLcYTLiQm2IDzmlSvYm7ov15anEcDJ92GHqqazxTSreeNgfnYu24kiEvvv0WlbCdFQ==} + peerDependencies: + three: '>=0.137' + + meshoptimizer@0.18.1: + resolution: {integrity: sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-extension-math@3.1.0: + resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==} + + micromark-extension-mdx-expression@3.0.1: + resolution: {integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==} + + micromark-extension-mdx-jsx@3.0.2: + resolution: {integrity: sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==} + + micromark-extension-mdx-md@2.0.0: + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + + micromark-extension-mdxjs-esm@3.0.0: + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} + + micromark-extension-mdxjs@3.0.0: + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-mdx-expression@2.0.3: + resolution: {integrity: sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-events-to-acorn@2.0.3: + resolution: {integrity: sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + ml-array-max@1.2.4: + resolution: {integrity: sha512-BlEeg80jI0tW6WaPyGxf5Sa4sqvcyY6lbSn5Vcv44lp1I2GR6AWojfUvLnGTNsIXrZ8uqWmo8VcG1WpkI2ONMQ==} + + ml-array-min@1.2.3: + resolution: {integrity: sha512-VcZ5f3VZ1iihtrGvgfh/q0XlMobG6GQ8FsNyQXD3T+IlstDv85g8kfV0xUG1QPRO/t21aukaJowDzMTc7j5V6Q==} + + ml-array-rescale@1.3.7: + resolution: {integrity: sha512-48NGChTouvEo9KBctDfHC3udWnQKNKEWN0ziELvY3KG25GR5cA8K8wNVzracsqSW1QEkAXjTNx+ycgAv06/1mQ==} + + ml-distance-euclidean@2.0.0: + resolution: {integrity: sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==} + + ml-kmeans@6.0.0: + resolution: {integrity: sha512-aziEZqeHxczaDvo1qkfCrC7XNVAPevs6PigAzy7dp9TzeQI7oGan6NfCgADwL/FAlA/wWi+1DkV8da6pXfuuPg==} + + ml-matrix@6.12.1: + resolution: {integrity: sha512-TJ+8eOFdp+INvzR4zAuwBQJznDUfktMtOB6g/hUcGh3rcyjxbz4Te57Pgri8Q9bhSQ7Zys4IYOGhFdnlgeB6Lw==} + + ml-nearest-vector@2.0.1: + resolution: {integrity: sha512-gMPwNm3eed59ewJYiCK/+wElWBfNoD6JizH965ePiQgCo0pvQL63w4YdZhLs5eUV0iWcq6brVMUBL6iMySHnqg==} + + ml-random@0.5.0: + resolution: {integrity: sha512-zLJBmNb34LOz+vN6BD8l3aYm/VWYWbmAunrLMPs4dHf4gTl8BWlhil72j56HubPg86zrXioIs4qoHq7Topy6tw==} + + ml-xsadd@2.0.0: + resolution: {integrity: sha512-VoAYUqmPRmzKbbqRejjqceGFp3VF81Qe8XXFGU0UXLxB7Mf4GGvyGq5Qn3k4AiQgDEV6WzobqlPOd+j0+m6IrA==} + + monaco-editor@0.52.2: + resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==} + + motion-dom@12.9.1: + resolution: {integrity: sha512-xqXEwRLDYDTzOgXobSoWtytRtGlf7zdkRfFbrrdP7eojaGQZ5Go4OOKtgnx7uF8sAkfr1ZjMvbCJSCIT2h6fkQ==} + + motion-utils@12.8.3: + resolution: {integrity: sha512-GYVauZEbca8/zOhEiYOY9/uJeedYQld6co/GJFKOy//0c/4lDqk0zB549sBYqqV2iMuX+uHrY1E5zd8A2L+1Lw==} + + motion@12.7.4: + resolution: {integrity: sha512-MBGrMbYageHw4iZJn+pGTr7abq5n53jCxYkhFC1It3vYukQPRWg5zij46MnwYGpLR8KG465MLHSASXot9edYOw==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + next-themes@0.4.6: + resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==} + peerDependencies: + react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + + next@15.3.1: + resolution: {integrity: sha512-8+dDV0xNLOgHlyBxP1GwHGVaNXsmp+2NhZEYrXr24GWLHtt27YrBPbPuHvzlhi7kZNYjeJNR93IF5zfFu5UL0g==} + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-entities@4.0.2: + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.3: + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + engines: {node: ^10 || ^12 || >=14} + + potpack@1.0.2: + resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@3.5.3: + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} + engines: {node: '>=14'} + hasBin: true + + prismjs@1.27.0: + resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} + engines: {node: '>=6'} + + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} + + promise-worker-transferable@1.0.4: + resolution: {integrity: sha512-bN+0ehEnrXfxV2ZQvU2PetO0n4gqBD4ulq3MI1WOPLgr7/Mg9yRQkX5+0v1vagr74ZTsl7XtzlaYDo2EuCeYJw==} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + property-information@7.0.0: + resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + raw-loader@4.0.2: + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + react-dom@19.1.0: + resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} + peerDependencies: + react: ^19.1.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-markdown@10.1.0: + resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==} + peerDependencies: + '@types/react': '>=18' + react: '>=18' + + react-monaco-editor@0.58.0: + resolution: {integrity: sha512-e8JH0TQEzO96Wd/EXgzc9M9tQK1pxBECD+8GNob9slMURcCM36TiVrgc4topWCDGYxRuMj8IEkaX+s3eQcUUqw==} + peerDependencies: + monaco-editor: ^0.52.0 + react: '>=16.8.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' + + react-reconciler@0.31.0: + resolution: {integrity: sha512-7Ob7Z+URmesIsIVRjnLoDGwBEG/tVitidU0nMsqX/eeJaLY89RISO/10ERe0MqmzuKUUB1rmY+h1itMbUHg9BQ==} + engines: {node: '>=0.10.0'} + peerDependencies: + react: ^19.0.0 + + react-swipeable@7.0.2: + resolution: {integrity: sha512-v1Qx1l+aC2fdxKa9aKJiaU/ZxmJ5o98RMoFwUqAAzVWUcxgfHFXDDruCKXhw6zIYXm6V64JiHgP9f6mlME5l8w==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 || ^19.0.0 || ^19.0.0-rc + + react-syntax-highlighter@15.6.1: + resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==} + peerDependencies: + react: '>= 0.14.0' + + react-textarea-autosize@8.5.9: + resolution: {integrity: sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + react-three-fiber@6.0.13: + resolution: {integrity: sha512-uShQnkMVLvnzwf3YzY9mnzCnpmLpvTQkc0ycrtwk8fyjXmZt2695tLn3tufPF6uxq06UKJRKJcjCVCMXyUcEPQ==} + deprecated: react-three-fiber has been deprecated, please use @react-three/fiber from now on + peerDependencies: + react: '>=17.0' + react-dom: '>=17.0' + three: '>=0.126' + peerDependenciesMeta: + react-dom: + optional: true + + react-use-measure@2.1.7: + resolution: {integrity: sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==} + peerDependencies: + react: '>=16.13' + react-dom: '>=16.13' + peerDependenciesMeta: + react-dom: + optional: true + + react@19.1.0: + resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} + engines: {node: '>=0.10.0'} + + recma-build-jsx@1.0.0: + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} + + recma-jsx@1.0.0: + resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==} + + recma-parse@1.0.0: + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} + + recma-stringify@1.0.0: + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + refractor@3.6.0: + resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + + rehype-katex@7.0.1: + resolution: {integrity: sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==} + + rehype-recma@1.0.0: + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} + + rehype-sanitize@6.0.0: + resolution: {integrity: sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==} + + rehype-slug@6.0.0: + resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} + + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + + remark-math@6.0.0: + resolution: {integrity: sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==} + + remark-mdx@3.1.0: + resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + + scheduler@0.26.0: + resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.3.2: + resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} + engines: {node: '>= 10.13.0'} + + scroll-into-view-if-needed@3.0.10: + resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.1: + resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + engines: {node: '>=10'} + hasBin: true + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + sharp@0.34.1: + resolution: {integrity: sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + slice-ansi@7.1.0: + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + + stats-gl@2.4.2: + resolution: {integrity: sha512-g5O9B0hm9CvnM36+v7SFl39T7hmAlv541tU81ME8YeSb3i1CIP5/QdDeSB3A0la0bKNHpxpwxOVRo2wFTYEosQ==} + peerDependencies: + '@types/three': '*' + three: '*' + + stats.js@0.17.0: + resolution: {integrity: sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.repeat@1.0.0: + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-mod@4.1.2: + resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} + + style-to-js@1.1.16: + resolution: {integrity: sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw==} + + style-to-object@1.0.8: + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} + + styled-jsx@5.1.6: + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + suspend-react@0.1.3: + resolution: {integrity: sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==} + peerDependencies: + react: '>=17.0' + + swr@2.3.3: + resolution: {integrity: sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==} + peerDependencies: + react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + synckit@0.11.4: + resolution: {integrity: sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==} + engines: {node: ^14.18.0 || >=16.0.0} + + tailwind-merge@3.0.2: + resolution: {integrity: sha512-l7z+OYZ7mu3DTqrL88RiKrKIqO3NcpEO8V/Od04bNpvk0kiIFndGEoqfuzvj4yuhRkHKjRkII2z+KS2HfPcSxw==} + + tailwind-merge@3.2.0: + resolution: {integrity: sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==} + + tailwind-variants@1.0.0: + resolution: {integrity: sha512-2WSbv4ulEEyuBKomOunut65D8UZwxrHoRfYnxGcQNnHqlSCp2+B7Yz2W+yrNDrxRodOXtGD/1oCcKGNBnUqMqA==} + engines: {node: '>=16.x', pnpm: '>=7.x'} + peerDependencies: + tailwindcss: '*' + + tailwindcss@4.1.4: + resolution: {integrity: sha512-1ZIUqtPITFbv/DxRmDr5/agPqJwF69d24m9qmM1939TJehgY539CtzeZRjbLt5G6fSy/7YqqYsfvoTEw9xUI2A==} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + terser-webpack-plugin@5.3.14: + resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@5.39.0: + resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==} + engines: {node: '>=10'} + hasBin: true + + three-mesh-bvh@0.8.3: + resolution: {integrity: sha512-4G5lBaF+g2auKX3P0yqx+MJC6oVt6sB5k+CchS6Ob0qvH0YIhuUk1eYr7ktsIpY+albCqE80/FVQGV190PmiAg==} + peerDependencies: + three: '>= 0.159.0' + + three-stdlib@2.36.0: + resolution: {integrity: sha512-kv0Byb++AXztEGsULgMAs8U2jgUdz6HPpAB/wDJnLiLlaWQX2APHhiTJIN7rqW+Of0eRgcp7jn05U1BsCP3xBA==} + peerDependencies: + three: '>=0.128.0' + + three@0.175.0: + resolution: {integrity: sha512-nNE3pnTHxXN/Phw768u0Grr7W4+rumGg/H6PgeseNJojkJtmeHJfZWi41Gp2mpXl1pg1pf1zjwR4McM1jTqkpg==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + troika-three-text@0.52.4: + resolution: {integrity: sha512-V50EwcYGruV5rUZ9F4aNsrytGdKcXKALjEtQXIOBfhVoZU9VAqZNIoGQ3TMiooVqFAbR1w15T+f+8gkzoFzawg==} + peerDependencies: + three: '>=0.125.0' + + troika-three-utils@0.52.4: + resolution: {integrity: sha512-NORAStSVa/BDiG52Mfudk4j1FG4jC4ILutB3foPnfGbOeIs9+G5vZLa0pnmnaftZUGm4UwSoqEpWdqvC7zms3A==} + peerDependencies: + three: '>=0.125.0' + + troika-worker-utils@0.52.0: + resolution: {integrity: sha512-W1CpvTHykaPH5brv5VHLfQo9D1OYuo0cSBEUQFFT/nBUzM8iD6Lq2/tgG/f1OelbAS1WtaTPQzE5uM49egnngw==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tunnel-rat@0.1.2: + resolution: {integrity: sha512-lR5VHmkPhzdhrM092lI2nACsLO4QubF0/yoOhzX7c+wIpbN1GjHNzCc91QlpxBi+cnx8vVJ+Ur6vL5cEoQPFpQ==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-position-from-estree@2.0.0: + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + use-composed-ref@1.4.0: + resolution: {integrity: sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-isomorphic-layout-effect@1.2.0: + resolution: {integrity: sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-latest@1.3.0: + resolution: {integrity: sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-sync-external-store@1.5.0: + resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + utility-types@3.11.0: + resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} + engines: {node: '>= 4'} + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + + w3c-keyname@2.2.8: + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + + watchpack@2.4.2: + resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} + engines: {node: '>=10.13.0'} + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + webgl-constants@1.1.1: + resolution: {integrity: sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg==} + + webgl-sdf-generator@1.1.1: + resolution: {integrity: sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + + webpack@5.98.0: + resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + + ws@8.18.1: + resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + yaml@2.7.1: + resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} + engines: {node: '>= 14'} + hasBin: true + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zustand@4.5.6: + resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==} + engines: {node: '>=12.7.0'} + peerDependencies: + '@types/react': '>=16.8' + immer: '>=9.0.6' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + + zustand@5.0.3: + resolution: {integrity: sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=18.0.0' + immer: '>=9.0.6' + react: '>=18.0.0' + use-sync-external-store: '>=1.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + use-sync-external-store: + optional: true + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@alloc/quick-lru@5.2.0': {} + + '@babel/runtime@7.27.0': + dependencies: + regenerator-runtime: 0.14.1 + + '@codemirror/autocomplete@6.18.6': + dependencies: + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + + '@codemirror/commands@6.8.1': + dependencies: + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + + '@codemirror/lang-css@6.3.1': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@lezer/common': 1.2.3 + '@lezer/css': 1.1.11 + + '@codemirror/lang-html@6.4.9': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/lang-css': 6.3.1 + '@codemirror/lang-javascript': 6.2.3 + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + '@lezer/css': 1.1.11 + '@lezer/html': 1.3.10 + + '@codemirror/lang-javascript@6.2.3': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/language': 6.11.0 + '@codemirror/lint': 6.8.5 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + '@lezer/javascript': 1.5.1 + + '@codemirror/lang-markdown@6.3.2': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/lang-html': 6.4.9 + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + '@lezer/markdown': 1.4.2 + + '@codemirror/lang-python@6.1.7': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@lezer/common': 1.2.3 + '@lezer/python': 1.1.18 + + '@codemirror/language@6.11.0': + dependencies: + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + style-mod: 4.1.2 + + '@codemirror/lint@6.8.5': + dependencies: + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + crelt: 1.0.6 + + '@codemirror/search@6.5.10': + dependencies: + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + crelt: 1.0.6 + + '@codemirror/state@6.5.2': + dependencies: + '@marijn/find-cluster-break': 1.0.2 + + '@codemirror/theme-one-dark@6.1.2': + dependencies: + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + '@lezer/highlight': 1.2.1 + + '@codemirror/view@6.36.5': + dependencies: + '@codemirror/state': 6.5.2 + style-mod: 4.1.2 + w3c-keyname: 2.2.8 + + '@emnapi/runtime@1.4.3': + dependencies: + tslib: 2.8.1 + optional: true + + '@eslint-community/eslint-utils@4.6.1(eslint@9.25.0(jiti@2.4.2))': + dependencies: + eslint: 9.25.0(jiti@2.4.2) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.2.8(eslint@9.25.0(jiti@2.4.2))': + optionalDependencies: + eslint: 9.25.0(jiti@2.4.2) + + '@eslint/config-array@0.20.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.0 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.2.1': {} + + '@eslint/core@0.13.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.0 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.25.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.2.8': + dependencies: + '@eslint/core': 0.13.0 + levn: 0.4.1 + + '@formatjs/ecma402-abstract@2.3.4': + dependencies: + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/intl-localematcher': 0.6.1 + decimal.js: 10.5.0 + tslib: 2.8.1 + + '@formatjs/fast-memoize@2.2.7': + dependencies: + tslib: 2.8.1 + + '@formatjs/icu-messageformat-parser@2.11.2': + dependencies: + '@formatjs/ecma402-abstract': 2.3.4 + '@formatjs/icu-skeleton-parser': 1.8.14 + tslib: 2.8.1 + + '@formatjs/icu-skeleton-parser@1.8.14': + dependencies: + '@formatjs/ecma402-abstract': 2.3.4 + tslib: 2.8.1 + + '@formatjs/intl-localematcher@0.6.1': + dependencies: + tslib: 2.8.1 + + '@heroui/accordion@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/divider': 2.2.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-accordion': 2.2.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/button': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tree': 3.8.8(react@19.1.0) + '@react-types/accordion': 3.0.0-alpha.26(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/alert@2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/aria-utils@2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-rsc-utils': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.2(react@19.1.0) + '@react-stately/overlays': 3.6.14(react@19.1.0) + '@react-types/overlays': 3.8.13(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@heroui/theme' + - framer-motion + + '@heroui/autocomplete@2.3.19-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/input': 2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/listbox': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/popover': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/scroll-shadow': 2.3.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/spinner': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/combobox': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/combobox': 3.10.3(react@19.1.0) + '@react-types/combobox': 3.13.3(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + + '@heroui/avatar@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-image': 2.1.9-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/badge@2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/breadcrumbs@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/breadcrumbs': 3.5.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/breadcrumbs': 3.7.11(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/button@2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/ripple': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/spinner': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/button': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/calendar@2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@internationalized/date': 3.7.0 + '@react-aria/calendar': 3.7.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/calendar': 3.7.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/calendar': 3.6.1(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + '@types/lodash.debounce': 4.0.9 + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + scroll-into-view-if-needed: 3.0.10 + + '@heroui/card@2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/ripple': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/button': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/checkbox@2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-callback-ref': 2.1.8-beta.2(react@19.1.0) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/checkbox': 3.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/checkbox': 3.6.12(react@19.1.0) + '@react-stately/toggle': 3.8.2(react@19.1.0) + '@react-types/checkbox': 3.9.2(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/chip@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/checkbox': 3.9.2(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/code@2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/date-input@2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@internationalized/date': 3.7.0 + '@react-aria/datepicker': 3.14.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/datepicker': 3.13.0(react@19.1.0) + '@react-types/datepicker': 3.11.0(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/date-picker@2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/calendar': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/date-input': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/popover': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@internationalized/date': 3.7.0 + '@react-aria/datepicker': 3.14.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/datepicker': 3.13.0(react@19.1.0) + '@react-stately/overlays': 3.6.14(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/datepicker': 3.11.0(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/divider@2.2.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-rsc-utils': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/dom-animation@2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))': + dependencies: + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + + '@heroui/drawer@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/modal': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/dropdown@2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/menu': 2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/popover': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/menu': 3.18.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/menu': 3.9.2(react@19.1.0) + '@react-types/menu': 3.9.15(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/form@2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.2(react@19.1.0) + '@react-types/form': 3.7.10(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/framer-utils@2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-measure': 2.1.8-beta.2(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@heroui/theme' + + '@heroui/image@2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-image': 2.1.9-beta.2(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/input-otp@2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.2(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/textfield': 3.12.0(react@19.1.0) + input-otp: 1.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/input@2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.17.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + '@react-types/textfield': 3.12.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-textarea-autosize: 8.5.9(@types/react@19.1.2)(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + + '@heroui/kbd@2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/link@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-link': 2.2.13-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/link': 3.7.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/link': 3.5.11(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/listbox@2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/divider': 2.2.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-is-mobile': 2.2.9-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/list': 3.12.0(react@19.1.0) + '@react-types/menu': 3.9.15(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + '@tanstack/react-virtual': 3.11.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/menu@2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/divider': 2.2.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-is-mobile': 2.2.9-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/menu': 3.18.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/menu': 3.9.2(react@19.1.0) + '@react-stately/tree': 3.8.8(react@19.1.0) + '@react-types/menu': 3.9.15(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/modal@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-aria-modal-overlay': 2.2.11-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-disclosure': 2.2.10-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-draggable': 2.1.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/dialog': 3.5.23(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.14(react@19.1.0) + '@react-types/overlays': 3.8.13(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/navbar@2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-scroll-position': 2.1.8-beta.2(react@19.1.0) + '@react-aria/button': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.2(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/number-input@2.0.8-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/numberfield': 3.11.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/numberfield': 3.9.10(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/numberfield': 3.8.9(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/pagination@2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-intersection-observer': 2.2.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-pagination': 2.2.11-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + scroll-into-view-if-needed: 3.0.10 + + '@heroui/popover@2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/dialog': 3.5.23(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.14(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/overlays': 3.8.13(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/progress@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-is-mounted': 2.1.8-beta.2(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/progress': 3.4.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/progress': 3.5.10(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/radio@2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/radio': 3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/radio': 3.10.11(react@19.1.0) + '@react-types/radio': 3.8.7(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/react-rsc-utils@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/react-utils@2.1.10-beta.2(react@19.1.0)': + dependencies: + '@heroui/react-rsc-utils': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + react: 19.1.0 + + '@heroui/react@2.8.0-beta.2(@types/react@19.1.2)(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.4)': + dependencies: + '@heroui/accordion': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/alert': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/autocomplete': 2.3.19-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/avatar': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/badge': 2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/breadcrumbs': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/calendar': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/card': 2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/checkbox': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/chip': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/code': 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/date-input': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/date-picker': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/divider': 2.2.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/drawer': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/dropdown': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/image': 2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/input': 2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/input-otp': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/kbd': 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/link': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/listbox': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/menu': 2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/modal': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/navbar': 2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/number-input': 2.0.8-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/pagination': 2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/popover': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/progress': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/radio': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/ripple': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/scroll-shadow': 2.3.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/select': 2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/skeleton': 2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/slider': 2.4.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/snippet': 2.2.19-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/spacer': 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/spinner': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/switch': 2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/table': 2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/tabs': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/toast': 2.0.8-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/tooltip': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/user': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - tailwindcss + + '@heroui/ripple@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/scroll-shadow@2.3.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-data-scroll-overflow': 2.2.9-beta.2(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/select@2.4.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/form': 2.1.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/listbox': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/popover': 2.3.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/scroll-shadow': 2.3.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/spinner': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-aria-button': 2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-aria-multiselect': 2.4.11-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + '@tanstack/react-virtual': 3.11.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/shared-icons@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/shared-utils@2.1.9-beta.2': {} + + '@heroui/skeleton@2.2.12-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/slider@2.4.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/tooltip': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/slider': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/slider': 3.6.2(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/snippet@2.2.19-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/button': 2.2.18-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/tooltip': 2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/use-clipboard': 2.1.9-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/spacer@2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/spinner@2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - framer-motion + + '@heroui/switch@2.2.16-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/switch': 3.7.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.2(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/system-rsc@2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0)': + dependencies: + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-types/shared': 3.28.0(react@19.1.0) + clsx: 1.2.1 + react: 19.1.0 + + '@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/system-rsc': 2.3.13-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react@19.1.0) + '@internationalized/date': 3.7.0 + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/datepicker': 3.11.0(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@heroui/theme' + + '@heroui/table@2.2.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/checkbox': 2.3.17-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/spacer': 2.2.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/table': 3.17.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/table': 3.14.0(react@19.1.0) + '@react-stately/virtualizer': 4.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/grid': 3.3.0(react@19.1.0) + '@react-types/table': 3.11.0(react@19.1.0) + '@tanstack/react-virtual': 3.11.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/tabs@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-is-mounted': 2.1.8-beta.2(react@19.1.0) + '@heroui/use-update-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/tabs': 3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tabs': 3.8.0(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + '@react-types/tabs': 3.3.13(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + scroll-into-view-if-needed: 3.0.10 + + '@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + clsx: 1.2.1 + color: 4.2.3 + color2k: 2.0.3 + deepmerge: 4.3.1 + flat: 5.0.2 + tailwind-merge: 3.0.2 + tailwind-variants: 1.0.0(tailwindcss@4.1.4) + tailwindcss: 4.1.4 + + '@heroui/toast@2.0.8-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-icons': 2.1.8-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/spinner': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-is-mobile': 2.2.9-beta.2(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toast': 3.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toast': 3.0.0(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/tooltip@2.2.15-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/aria-utils': 2.2.15-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/dom-animation': 2.1.8-beta.2(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) + '@heroui/framer-utils': 2.1.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/tooltip': 3.8.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tooltip': 3.5.2(react@19.1.0) + '@react-types/overlays': 3.8.13(react@19.1.0) + '@react-types/tooltip': 3.4.15(react@19.1.0) + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/use-aria-accordion@2.2.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/button': 3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.23.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tree': 3.8.8(react@19.1.0) + '@react-types/accordion': 3.0.0-alpha.26(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-aria-button@2.2.12-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-aria-link@2.2.13-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/link': 3.5.11(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-aria-modal-overlay@2.2.11-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/overlays': 3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.14(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/use-aria-multiselect@2.4.11-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/menu': 3.18.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.23.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.2(react@19.1.0) + '@react-stately/list': 3.12.0(react@19.1.0) + '@react-stately/menu': 3.9.2(react@19.1.0) + '@react-types/button': 3.11.0(react@19.1.0) + '@react-types/overlays': 3.8.13(react@19.1.0) + '@react-types/select': 3.9.10(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@heroui/use-callback-ref@2.1.8-beta.2(react@19.1.0)': + dependencies: + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + react: 19.1.0 + + '@heroui/use-clipboard@2.1.9-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/use-data-scroll-overflow@2.2.9-beta.2(react@19.1.0)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + react: 19.1.0 + + '@heroui/use-disclosure@2.2.10-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/use-callback-ref': 2.1.8-beta.2(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-draggable@2.1.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-image@2.1.9-beta.2(react@19.1.0)': + dependencies: + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/use-safe-layout-effect': 2.1.8-beta.2(react@19.1.0) + react: 19.1.0 + + '@heroui/use-intersection-observer@2.2.10-beta.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.28.0(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-is-mobile@2.2.9-beta.2(react@19.1.0)': + dependencies: + '@react-aria/ssr': 3.9.7(react@19.1.0) + react: 19.1.0 + + '@heroui/use-is-mounted@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/use-measure@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/use-pagination@2.2.11-beta.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/shared-utils': 2.1.9-beta.2 + '@react-aria/i18n': 3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + transitivePeerDependencies: + - react-dom + + '@heroui/use-safe-layout-effect@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/use-scroll-position@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/use-update-effect@2.1.8-beta.2(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@heroui/user@2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@heroui/avatar': 2.2.14-beta.2(@heroui/system@2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/react-utils': 2.1.10-beta.2(react@19.1.0) + '@heroui/shared-utils': 2.1.9-beta.2 + '@heroui/system': 2.4.14-beta.2(@heroui/theme@2.4.14-beta.2(tailwindcss@4.1.4))(framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@heroui/theme': 2.4.14-beta.2(tailwindcss@4.1.4) + '@react-aria/focus': 3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.2': {} + + '@img/sharp-darwin-arm64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.1.0 + optional: true + + '@img/sharp-darwin-x64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.1.0 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.1.0': + optional: true + + '@img/sharp-libvips-darwin-x64@1.1.0': + optional: true + + '@img/sharp-libvips-linux-arm64@1.1.0': + optional: true + + '@img/sharp-libvips-linux-arm@1.1.0': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.1.0': + optional: true + + '@img/sharp-libvips-linux-s390x@1.1.0': + optional: true + + '@img/sharp-libvips-linux-x64@1.1.0': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.1.0': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.1.0': + optional: true + + '@img/sharp-linux-arm64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.1.0 + optional: true + + '@img/sharp-linux-arm@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.1.0 + optional: true + + '@img/sharp-linux-s390x@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.1.0 + optional: true + + '@img/sharp-linux-x64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.1.0 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.1': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.1.0 + optional: true + + '@img/sharp-wasm32@0.34.1': + dependencies: + '@emnapi/runtime': 1.4.3 + optional: true + + '@img/sharp-win32-ia32@0.34.1': + optional: true + + '@img/sharp-win32-x64@0.34.1': + optional: true + + '@internationalized/date@3.7.0': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/date@3.8.0': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/message@3.1.7': + dependencies: + '@swc/helpers': 0.5.17 + intl-messageformat: 10.7.16 + + '@internationalized/number@3.6.1': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/string@3.2.6': + dependencies: + '@swc/helpers': 0.5.17 + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@lezer/common@1.2.3': {} + + '@lezer/css@1.1.11': + dependencies: + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + + '@lezer/highlight@1.2.1': + dependencies: + '@lezer/common': 1.2.3 + + '@lezer/html@1.3.10': + dependencies: + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + + '@lezer/javascript@1.5.1': + dependencies: + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + + '@lezer/lr@1.4.2': + dependencies: + '@lezer/common': 1.2.3 + + '@lezer/markdown@1.4.2': + dependencies: + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + + '@lezer/python@1.1.18': + dependencies: + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + + '@marijn/find-cluster-break@1.0.2': {} + + '@mdx-js/loader@3.1.0(acorn@8.14.1)(webpack@5.98.0)': + dependencies: + '@mdx-js/mdx': 3.1.0(acorn@8.14.1) + source-map: 0.7.4 + optionalDependencies: + webpack: 5.98.0 + transitivePeerDependencies: + - acorn + - supports-color + + '@mdx-js/mdx@3.1.0(acorn@8.14.1)': + dependencies: + '@types/estree': 1.0.7 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 + collapse-white-space: 2.1.0 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-util-scope: 1.0.0 + estree-walker: 3.0.3 + hast-util-to-jsx-runtime: 2.3.6 + markdown-extensions: 2.0.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.0(acorn@8.14.1) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 + remark-mdx: 3.1.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + source-map: 0.7.4 + unified: 11.0.5 + unist-util-position-from-estree: 2.0.0 + unist-util-stringify-position: 4.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + transitivePeerDependencies: + - acorn + - supports-color + + '@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0)': + dependencies: + '@types/mdx': 2.0.13 + '@types/react': 19.1.2 + react: 19.1.0 + + '@mediapipe/tasks-vision@0.10.17': {} + + '@monaco-editor/loader@1.5.0': + dependencies: + state-local: 1.0.7 + + '@monaco-editor/react@4.7.0(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@monaco-editor/loader': 1.5.0 + monaco-editor: 0.52.2 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@monogrid/gainmap-js@3.1.0(three@0.175.0)': + dependencies: + promise-worker-transferable: 1.0.4 + three: 0.175.0 + + '@next/env@15.3.1': {} + + '@next/eslint-plugin-next@15.3.1': + dependencies: + fast-glob: 3.3.1 + + '@next/mdx@15.3.1(@mdx-js/loader@3.1.0(acorn@8.14.1)(webpack@5.98.0))(@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0))': + dependencies: + source-map: 0.7.4 + optionalDependencies: + '@mdx-js/loader': 3.1.0(acorn@8.14.1)(webpack@5.98.0) + '@mdx-js/react': 3.1.0(@types/react@19.1.2)(react@19.1.0) + + '@next/swc-darwin-arm64@15.3.1': + optional: true + + '@next/swc-darwin-x64@15.3.1': + optional: true + + '@next/swc-linux-arm64-gnu@15.3.1': + optional: true + + '@next/swc-linux-arm64-musl@15.3.1': + optional: true + + '@next/swc-linux-x64-gnu@15.3.1': + optional: true + + '@next/swc-linux-x64-musl@15.3.1': + optional: true + + '@next/swc-win32-arm64-msvc@15.3.1': + optional: true + + '@next/swc-win32-x64-msvc@15.3.1': + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@pkgr/core@0.2.4': {} + + '@react-aria/breadcrumbs@3.5.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/link': 3.8.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/breadcrumbs': 3.7.11(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/button@3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toolbar': 3.0.0-beta.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.3(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/calendar@3.7.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/live-announcer': 3.4.2 + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/calendar': 3.7.1(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/calendar': 3.7.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/checkbox@3.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/form': 3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toggle': 3.11.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/checkbox': 3.6.12(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/toggle': 3.8.3(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/combobox@3.12.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/live-announcer': 3.4.2 + '@react-aria/menu': 3.18.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.17.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/combobox': 3.10.3(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/combobox': 3.13.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/datepicker@3.14.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@internationalized/number': 3.6.1 + '@internationalized/string': 3.2.6 + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/spinbutton': 3.6.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/datepicker': 3.13.0(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/calendar': 3.7.0(react@19.1.0) + '@react-types/datepicker': 3.11.0(react@19.1.0) + '@react-types/dialog': 3.5.17(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/dialog@3.5.23(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/dialog': 3.5.17(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/focus@3.20.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/focus@3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/form@3.0.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/form@3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/grid@3.13.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/live-announcer': 3.4.2 + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/grid': 3.11.1(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/grid': 3.3.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/i18n@3.12.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@internationalized/message': 3.1.7 + '@internationalized/number': 3.6.1 + '@internationalized/string': 3.2.6 + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/i18n@3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@internationalized/message': 3.1.7 + '@internationalized/number': 3.6.1 + '@internationalized/string': 3.2.6 + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/interactions@3.24.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/interactions@3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/label@3.7.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/label@3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/landmark@3.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + use-sync-external-store: 1.5.0(react@19.1.0) + + '@react-aria/link@3.7.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/link': 3.6.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/link@3.8.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/link': 3.6.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/listbox@3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/list': 3.12.1(react@19.1.0) + '@react-types/listbox': 3.6.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/listbox@3.14.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/list': 3.12.1(react@19.1.0) + '@react-types/listbox': 3.6.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/live-announcer@3.4.2': + dependencies: + '@swc/helpers': 0.5.17 + + '@react-aria/menu@3.18.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/menu': 3.9.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/tree': 3.8.9(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/menu': 3.10.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/menu@3.18.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/menu': 3.9.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/tree': 3.8.9(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/menu': 3.10.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/numberfield@3.11.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/spinbutton': 3.6.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.17.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/numberfield': 3.9.10(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/numberfield': 3.8.9(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/overlays@3.26.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/overlays@3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/progress@3.4.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/progress': 3.5.10(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/radio@3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/radio': 3.10.11(react@19.1.0) + '@react-types/radio': 3.8.7(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/selection@3.23.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/selection@3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/slider@3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/slider': 3.6.2(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/slider': 3.7.10(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/spinbutton@3.6.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/live-announcer': 3.4.2 + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/ssr@3.9.7(react@19.1.0)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-aria/ssr@3.9.8(react@19.1.0)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-aria/switch@3.7.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/toggle': 3.11.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/switch': 3.5.10(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/table@3.17.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/grid': 3.13.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/live-announcer': 3.4.2 + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-stately/table': 3.14.0(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/grid': 3.3.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/table': 3.11.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/tabs@3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.24.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tabs': 3.8.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/tabs': 3.3.13(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/textfield@3.17.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/form': 3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/textfield': 3.12.1(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/textfield@3.17.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/form': 3.0.15(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/textfield': 3.12.1(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/toast@3.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/landmark': 3.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toast': 3.0.0(react@19.1.0) + '@react-types/button': 3.12.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/toggle@3.11.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.3(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/toolbar@3.0.0-beta.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/focus': 3.20.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/tooltip@3.8.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tooltip': 3.5.2(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/tooltip': 3.4.15(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/utils@3.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/utils@3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/ssr': 3.9.8(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/visually-hidden@3.8.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-aria/visually-hidden@3.8.22(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/interactions': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-stately/calendar@3.7.1(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/calendar': 3.7.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/checkbox@3.6.12(react@19.1.0)': + dependencies: + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/collections@3.12.2(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/collections@3.12.3(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/combobox@3.10.3(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/list': 3.12.1(react@19.1.0) + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-stately/select': 3.6.12(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/combobox': 3.13.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/datepicker@3.13.0(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@internationalized/string': 3.2.6 + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/datepicker': 3.11.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/flags@3.1.1': + dependencies: + '@swc/helpers': 0.5.17 + + '@react-stately/form@3.1.2(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/form@3.1.3(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/grid@3.11.1(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-types/grid': 3.3.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/list@3.12.0(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/list@3.12.1(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/menu@3.9.2(react@19.1.0)': + dependencies: + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/menu': 3.10.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/menu@3.9.3(react@19.1.0)': + dependencies: + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/menu': 3.10.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/numberfield@3.9.10(react@19.1.0)': + dependencies: + '@internationalized/number': 3.6.1 + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/numberfield': 3.8.9(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/overlays@3.6.14(react@19.1.0)': + dependencies: + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/overlays': 3.8.14(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/overlays@3.6.15(react@19.1.0)': + dependencies: + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/overlays': 3.8.14(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/radio@3.10.11(react@19.1.0)': + dependencies: + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/radio': 3.8.7(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/select@3.6.12(react@19.1.0)': + dependencies: + '@react-stately/form': 3.1.3(react@19.1.0) + '@react-stately/list': 3.12.1(react@19.1.0) + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/select': 3.9.11(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/selection@3.20.1(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/slider@3.6.2(react@19.1.0)': + dependencies: + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/slider': 3.7.10(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/table@3.14.0(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/flags': 3.1.1 + '@react-stately/grid': 3.11.1(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/grid': 3.3.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/table': 3.11.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/tabs@3.8.0(react@19.1.0)': + dependencies: + '@react-stately/list': 3.12.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@react-types/tabs': 3.3.13(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/toast@3.0.0(react@19.1.0)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.1.0 + use-sync-external-store: 1.5.0(react@19.1.0) + + '@react-stately/toggle@3.8.2(react@19.1.0)': + dependencies: + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/toggle@3.8.3(react@19.1.0)': + dependencies: + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/checkbox': 3.9.3(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/tooltip@3.5.2(react@19.1.0)': + dependencies: + '@react-stately/overlays': 3.6.15(react@19.1.0) + '@react-types/tooltip': 3.4.15(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/tree@3.8.8(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/tree@3.8.9(react@19.1.0)': + dependencies: + '@react-stately/collections': 3.12.3(react@19.1.0) + '@react-stately/selection': 3.20.1(react@19.1.0) + '@react-stately/utils': 3.10.6(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/utils@3.10.5(react@19.1.0)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/utils@3.10.6(react@19.1.0)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.1.0 + + '@react-stately/virtualizer@4.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@react-aria/utils': 3.28.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + '@swc/helpers': 0.5.17 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@react-three/drei@10.0.6(@react-three/fiber@9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0))(@types/react@19.1.2)(@types/three@0.175.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0)': + dependencies: + '@babel/runtime': 7.27.0 + '@mediapipe/tasks-vision': 0.10.17 + '@monogrid/gainmap-js': 3.1.0(three@0.175.0) + '@react-three/fiber': 9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0) + '@use-gesture/react': 10.3.1(react@19.1.0) + camera-controls: 2.10.1(three@0.175.0) + cross-env: 7.0.3 + detect-gpu: 5.0.70 + glsl-noise: 0.0.0 + hls.js: 1.6.2 + maath: 0.10.8(@types/three@0.175.0)(three@0.175.0) + meshline: 3.3.1(three@0.175.0) + react: 19.1.0 + stats-gl: 2.4.2(@types/three@0.175.0)(three@0.175.0) + stats.js: 0.17.0 + suspend-react: 0.1.3(react@19.1.0) + three: 0.175.0 + three-mesh-bvh: 0.8.3(three@0.175.0) + three-stdlib: 2.36.0(three@0.175.0) + troika-three-text: 0.52.4(three@0.175.0) + tunnel-rat: 0.1.2(@types/react@19.1.2)(react@19.1.0) + use-sync-external-store: 1.5.0(react@19.1.0) + utility-types: 3.11.0 + zustand: 5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) + optionalDependencies: + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - '@types/three' + - immer + + '@react-three/fiber@9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0)': + dependencies: + '@babel/runtime': 7.27.0 + '@types/react-reconciler': 0.28.9(@types/react@19.1.2) + '@types/webxr': 0.5.22 + base64-js: 1.5.1 + buffer: 6.0.3 + its-fine: 2.0.0(@types/react@19.1.2)(react@19.1.0) + react: 19.1.0 + react-reconciler: 0.31.0(react@19.1.0) + react-use-measure: 2.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + scheduler: 0.25.0 + suspend-react: 0.1.3(react@19.1.0) + three: 0.175.0 + use-sync-external-store: 1.5.0(react@19.1.0) + zustand: 5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) + optionalDependencies: + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - immer + + '@react-types/accordion@3.0.0-alpha.26(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/breadcrumbs@3.7.11(react@19.1.0)': + dependencies: + '@react-types/link': 3.6.0(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/button@3.11.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/button@3.12.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/calendar@3.6.1(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/calendar@3.7.0(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/checkbox@3.9.2(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/checkbox@3.9.3(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/combobox@3.13.3(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/datepicker@3.11.0(react@19.1.0)': + dependencies: + '@internationalized/date': 3.8.0 + '@react-types/calendar': 3.7.0(react@19.1.0) + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/dialog@3.5.17(react@19.1.0)': + dependencies: + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/form@3.7.10(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/grid@3.3.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/grid@3.3.1(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/link@3.5.11(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/link@3.6.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/listbox@3.6.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/menu@3.10.0(react@19.1.0)': + dependencies: + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/menu@3.9.15(react@19.1.0)': + dependencies: + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/numberfield@3.8.9(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/overlays@3.8.13(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/overlays@3.8.14(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/progress@3.5.10(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/radio@3.8.7(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/select@3.9.10(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/select@3.9.11(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/shared@3.28.0(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@react-types/shared@3.29.0(react@19.1.0)': + dependencies: + react: 19.1.0 + + '@react-types/slider@3.7.10(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/switch@3.5.10(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/table@3.11.0(react@19.1.0)': + dependencies: + '@react-types/grid': 3.3.1(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/tabs@3.3.13(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/textfield@3.12.0(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/textfield@3.12.1(react@19.1.0)': + dependencies: + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@react-types/tooltip@3.4.15(react@19.1.0)': + dependencies: + '@react-types/overlays': 3.8.14(react@19.1.0) + '@react-types/shared': 3.29.0(react@19.1.0) + react: 19.1.0 + + '@rtsao/scc@1.1.0': {} + + '@supabase/auth-js@2.69.1': + dependencies: + '@supabase/node-fetch': 2.6.15 + + '@supabase/functions-js@2.4.4': + dependencies: + '@supabase/node-fetch': 2.6.15 + + '@supabase/node-fetch@2.6.15': + dependencies: + whatwg-url: 5.0.0 + + '@supabase/postgrest-js@1.19.4': + dependencies: + '@supabase/node-fetch': 2.6.15 + + '@supabase/realtime-js@2.11.2': + dependencies: + '@supabase/node-fetch': 2.6.15 + '@types/phoenix': 1.6.6 + '@types/ws': 8.18.1 + ws: 8.18.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@supabase/ssr@0.6.1(@supabase/supabase-js@2.49.4)': + dependencies: + '@supabase/supabase-js': 2.49.4 + cookie: 1.0.2 + + '@supabase/storage-js@2.7.1': + dependencies: + '@supabase/node-fetch': 2.6.15 + + '@supabase/supabase-js@2.49.4': + dependencies: + '@supabase/auth-js': 2.69.1 + '@supabase/functions-js': 2.4.4 + '@supabase/node-fetch': 2.6.15 + '@supabase/postgrest-js': 1.19.4 + '@supabase/realtime-js': 2.11.2 + '@supabase/storage-js': 2.7.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.1 + + '@swc/helpers@0.5.17': + dependencies: + tslib: 2.8.1 + + '@tailwindcss/node@4.1.4': + dependencies: + enhanced-resolve: 5.18.1 + jiti: 2.4.2 + lightningcss: 1.29.2 + tailwindcss: 4.1.4 + + '@tailwindcss/oxide-android-arm64@4.1.4': + optional: true + + '@tailwindcss/oxide-darwin-arm64@4.1.4': + optional: true + + '@tailwindcss/oxide-darwin-x64@4.1.4': + optional: true + + '@tailwindcss/oxide-freebsd-x64@4.1.4': + optional: true + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4': + optional: true + + '@tailwindcss/oxide-linux-arm64-gnu@4.1.4': + optional: true + + '@tailwindcss/oxide-linux-arm64-musl@4.1.4': + optional: true + + '@tailwindcss/oxide-linux-x64-gnu@4.1.4': + optional: true + + '@tailwindcss/oxide-linux-x64-musl@4.1.4': + optional: true + + '@tailwindcss/oxide-wasm32-wasi@4.1.4': + optional: true + + '@tailwindcss/oxide-win32-arm64-msvc@4.1.4': + optional: true + + '@tailwindcss/oxide-win32-x64-msvc@4.1.4': + optional: true + + '@tailwindcss/oxide@4.1.4': + optionalDependencies: + '@tailwindcss/oxide-android-arm64': 4.1.4 + '@tailwindcss/oxide-darwin-arm64': 4.1.4 + '@tailwindcss/oxide-darwin-x64': 4.1.4 + '@tailwindcss/oxide-freebsd-x64': 4.1.4 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.4 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.4 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.4 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.4 + '@tailwindcss/oxide-linux-x64-musl': 4.1.4 + '@tailwindcss/oxide-wasm32-wasi': 4.1.4 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.4 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.4 + + '@tailwindcss/postcss@4.1.4': + dependencies: + '@alloc/quick-lru': 5.2.0 + '@tailwindcss/node': 4.1.4 + '@tailwindcss/oxide': 4.1.4 + postcss: 8.5.3 + tailwindcss: 4.1.4 + + '@tanstack/query-core@5.75.5': {} + + '@tanstack/react-query@5.75.5(react@19.1.0)': + dependencies: + '@tanstack/query-core': 5.75.5 + react: 19.1.0 + + '@tanstack/react-virtual@3.11.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@tanstack/virtual-core': 3.11.3 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + '@tanstack/virtual-core@3.11.3': {} + + '@tweenjs/tween.js@23.1.3': {} + + '@types/codemirror@5.60.15': + dependencies: + '@types/tern': 0.23.9 + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/draco3d@1.4.10': {} + + '@types/eslint-scope@3.7.7': + dependencies: + '@types/eslint': 9.6.1 + '@types/estree': 1.0.7 + + '@types/eslint@9.6.1': + dependencies: + '@types/estree': 1.0.7 + '@types/json-schema': 7.0.15 + + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.7 + + '@types/estree@1.0.7': {} + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/katex@0.16.7': {} + + '@types/lodash.debounce@4.0.9': + dependencies: + '@types/lodash': 4.17.16 + + '@types/lodash@4.17.16': {} + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdx@2.0.13': {} + + '@types/ms@2.1.0': {} + + '@types/node@22.14.1': + dependencies: + undici-types: 6.21.0 + + '@types/offscreencanvas@2019.7.3': {} + + '@types/phoenix@1.6.6': {} + + '@types/react-dom@19.1.2(@types/react@19.1.2)': + dependencies: + '@types/react': 19.1.2 + + '@types/react-reconciler@0.28.9(@types/react@19.1.2)': + dependencies: + '@types/react': 19.1.2 + + '@types/react-syntax-highlighter@15.5.13': + dependencies: + '@types/react': 19.1.2 + + '@types/react@19.1.2': + dependencies: + csstype: 3.1.3 + + '@types/stats.js@0.17.3': {} + + '@types/tern@0.23.9': + dependencies: + '@types/estree': 1.0.7 + + '@types/three@0.175.0': + dependencies: + '@tweenjs/tween.js': 23.1.3 + '@types/stats.js': 0.17.3 + '@types/webxr': 0.5.22 + '@webgpu/types': 0.1.60 + fflate: 0.8.2 + meshoptimizer: 0.18.1 + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@types/webxr@0.5.22': {} + + '@types/ws@8.18.1': + dependencies: + '@types/node': 22.14.1 + + '@typescript-eslint/eslint-plugin@8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.30.1 + '@typescript-eslint/type-utils': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/utils': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.30.1 + eslint: 9.25.0(jiti@2.4.2) + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.30.1 + '@typescript-eslint/types': 8.30.1 + '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.30.1 + debug: 4.4.0 + eslint: 9.25.0(jiti@2.4.2) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.30.1': + dependencies: + '@typescript-eslint/types': 8.30.1 + '@typescript-eslint/visitor-keys': 8.30.1 + + '@typescript-eslint/type-utils@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) + '@typescript-eslint/utils': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + debug: 4.4.0 + eslint: 9.25.0(jiti@2.4.2) + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.30.1': {} + + '@typescript-eslint/typescript-estree@8.30.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 8.30.1 + '@typescript-eslint/visitor-keys': 8.30.1 + debug: 4.4.0 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.1 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.0(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.30.1 + '@typescript-eslint/types': 8.30.1 + '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) + eslint: 9.25.0(jiti@2.4.2) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.30.1': + dependencies: + '@typescript-eslint/types': 8.30.1 + eslint-visitor-keys: 4.2.0 + + '@uiw/codemirror-extensions-basic-setup@4.23.10(@codemirror/autocomplete@6.18.6)(@codemirror/commands@6.8.1)(@codemirror/language@6.11.0)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.10)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/commands': 6.8.1 + '@codemirror/language': 6.11.0 + '@codemirror/lint': 6.8.5 + '@codemirror/search': 6.5.10 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + + '@uiw/codemirror-theme-abcdef@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-abyss@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-androidstudio@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-andromeda@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-atomone@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-aura@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-basic@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-bbedit@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-bespin@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-console@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-copilot@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-darcula@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-dracula@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-duotone@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-eclipse@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-github@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-gruvbox-dark@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-kimbie@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-material@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-monokai-dimmed@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-monokai@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-noctis-lilac@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-nord@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-okaidia@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-quietlight@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-red@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-solarized@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-sublime@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-tokyo-night-day@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-tokyo-night-storm@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-tokyo-night@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-tomorrow-night-blue@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-vscode@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-white@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-theme-xcode@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-themes-all@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@uiw/codemirror-theme-abcdef': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-abyss': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-androidstudio': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-andromeda': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-atomone': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-aura': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-basic': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-bbedit': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-bespin': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-console': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-copilot': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-darcula': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-dracula': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-duotone': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-eclipse': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-github': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-gruvbox-dark': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-kimbie': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-material': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-monokai': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-monokai-dimmed': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-noctis-lilac': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-nord': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-okaidia': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-quietlight': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-red': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-solarized': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-sublime': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-tokyo-night': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-tokyo-night-day': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-tokyo-night-storm': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-tomorrow-night-blue': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-vscode': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-white': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-theme-xcode': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + '@uiw/codemirror-themes': 4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + transitivePeerDependencies: + - '@codemirror/language' + - '@codemirror/state' + - '@codemirror/view' + + '@uiw/codemirror-themes@4.23.10(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5)': + dependencies: + '@codemirror/language': 6.11.0 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + + '@uiw/react-codemirror@4.23.10(@babel/runtime@7.27.0)(@codemirror/autocomplete@6.18.6)(@codemirror/language@6.11.0)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.10)(@codemirror/state@6.5.2)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.5)(codemirror@6.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@babel/runtime': 7.27.0 + '@codemirror/commands': 6.8.1 + '@codemirror/state': 6.5.2 + '@codemirror/theme-one-dark': 6.1.2 + '@codemirror/view': 6.36.5 + '@uiw/codemirror-extensions-basic-setup': 4.23.10(@codemirror/autocomplete@6.18.6)(@codemirror/commands@6.8.1)(@codemirror/language@6.11.0)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.10)(@codemirror/state@6.5.2)(@codemirror/view@6.36.5) + codemirror: 6.0.1 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@codemirror/autocomplete' + - '@codemirror/language' + - '@codemirror/lint' + - '@codemirror/search' + + '@ungap/structured-clone@1.3.0': {} + + '@use-gesture/core@10.3.1': {} + + '@use-gesture/react@10.3.1(react@19.1.0)': + dependencies: + '@use-gesture/core': 10.3.1 + react: 19.1.0 + + '@webassemblyjs/ast@1.14.1': + dependencies: + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} + + '@webassemblyjs/helper-api-error@1.13.2': {} + + '@webassemblyjs/helper-buffer@1.14.1': {} + + '@webassemblyjs/helper-numbers@1.13.2': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} + + '@webassemblyjs/helper-wasm-section@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 + + '@webassemblyjs/ieee754@1.13.2': + dependencies: + '@xtuc/ieee754': 1.2.0 + + '@webassemblyjs/leb128@1.13.2': + dependencies: + '@xtuc/long': 4.2.2 + + '@webassemblyjs/utf8@1.13.2': {} + + '@webassemblyjs/wasm-edit@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/helper-wasm-section': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-opt': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + '@webassemblyjs/wast-printer': 1.14.1 + + '@webassemblyjs/wasm-gen@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wasm-opt@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + + '@webassemblyjs/wasm-parser@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-api-error': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wast-printer@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 + + '@webgpu/types@0.1.60': {} + + '@xtuc/ieee754@1.2.0': {} + + '@xtuc/long@4.2.2': {} + + acorn-jsx@5.3.2(acorn@8.14.1): + dependencies: + acorn: 8.14.1 + + acorn@8.14.1: {} + + ajv-formats@2.1.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 + + ajv-keywords@3.5.2(ajv@6.12.6): + dependencies: + ajv: 6.12.6 + + ajv-keywords@5.1.0(ajv@8.17.1): + dependencies: + ajv: 8.17.1 + fast-deep-equal: 3.1.3 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.6 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + + ansi-regex@6.1.0: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-includes@3.1.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + + array.prototype.findlast@1.2.5: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-shim-unscopables: 1.1.0 + + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-shim-unscopables: 1.1.0 + + array.prototype.tosorted@1.1.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-shim-unscopables: 1.1.0 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + ast-types-flow@0.0.8: {} + + astring@1.9.0: {} + + async-function@1.0.0: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + axe-core@4.10.3: {} + + axobject-query@4.1.0: {} + + bail@2.0.2: {} + + balanced-match@1.0.2: {} + + base64-js@1.5.1: {} + + bidi-js@1.0.3: + dependencies: + require-from-string: 2.0.2 + + big.js@5.2.2: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.24.4: + dependencies: + caniuse-lite: 1.0.30001715 + electron-to-chromium: 1.5.140 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.24.4) + + buffer-from@1.1.2: {} + + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + camera-controls@2.10.1(three@0.175.0): + dependencies: + three: 0.175.0 + + caniuse-lite@1.0.30001714: {} + + caniuse-lite@1.0.30001715: {} + + ccount@2.0.1: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.4.1: {} + + character-entities-html4@2.1.0: {} + + character-entities-legacy@1.1.4: {} + + character-entities-legacy@3.0.0: {} + + character-entities@1.2.4: {} + + character-entities@2.0.2: {} + + character-reference-invalid@1.1.4: {} + + character-reference-invalid@2.0.1: {} + + chrome-trace-event@1.0.4: {} + + cli-cursor@5.0.0: + dependencies: + restore-cursor: 5.1.0 + + cli-truncate@4.0.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 7.2.0 + + client-only@0.0.1: {} + + clsx@1.2.1: {} + + clsx@2.1.1: {} + + codemirror@6.0.1: + dependencies: + '@codemirror/autocomplete': 6.18.6 + '@codemirror/commands': 6.8.1 + '@codemirror/language': 6.11.0 + '@codemirror/lint': 6.8.5 + '@codemirror/search': 6.5.10 + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.36.5 + + collapse-white-space@2.1.0: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + + color2k@2.0.3: {} + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + + colorette@2.0.20: {} + + comma-separated-tokens@1.0.8: {} + + comma-separated-tokens@2.0.3: {} + + commander@13.1.0: {} + + commander@2.20.3: {} + + commander@8.3.0: {} + + compute-scroll-into-view@3.1.1: {} + + concat-map@0.0.1: {} + + cookie@1.0.2: {} + + crelt@1.0.6: {} + + cross-env@7.0.3: + dependencies: + cross-spawn: 7.0.6 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + csstype@3.1.3: {} + + damerau-levenshtein@1.0.8: {} + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.4.0: + dependencies: + ms: 2.1.3 + + decimal.js@10.5.0: {} + + decode-named-character-reference@1.1.0: + dependencies: + character-entities: 2.0.2 + + deep-is@0.1.4: {} + + deepmerge@4.3.1: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + dequal@2.0.3: {} + + detect-gpu@5.0.70: + dependencies: + webgl-constants: 1.1.1 + + detect-libc@2.0.3: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + draco3d@1.5.7: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + electron-to-chromium@1.5.140: {} + + emoji-regex@10.4.0: {} + + emoji-regex@9.2.2: {} + + emojis-list@3.0.0: {} + + enhanced-resolve@5.18.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + entities@4.5.0: {} + + environment@1.1.0: {} + + es-abstract@1.23.9: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-iterator-helpers@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-set-tostringtag: 2.1.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + safe-array-concat: 1.1.3 + + es-module-lexer@1.6.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esast-util-from-estree@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 + + esast-util-from-js@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + acorn: 8.14.1 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.2 + + escalade@3.2.0: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-config-prettier@10.1.2(eslint@9.25.0(jiti@2.4.2)): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.16.1 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.25.0(jiti@2.4.2)): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + eslint: 9.25.0(jiti@2.4.2) + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-plugin-es@3.0.1(eslint@9.25.0(jiti@2.4.2)): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + eslint-utils: 2.1.0 + regexpp: 3.2.0 + + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2)): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.25.0(jiti@2.4.2) + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.25.0(jiti@2.4.2)) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-jsx-a11y@6.10.2(eslint@9.25.0(jiti@2.4.2)): + dependencies: + aria-query: 5.3.2 + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.10.3 + axobject-query: 4.1.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 9.25.0(jiti@2.4.2) + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + safe-regex-test: 1.1.0 + string.prototype.includes: 2.0.1 + + eslint-plugin-node@11.1.0(eslint@9.25.0(jiti@2.4.2)): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + eslint-plugin-es: 3.0.1(eslint@9.25.0(jiti@2.4.2)) + eslint-utils: 2.1.0 + ignore: 5.3.2 + minimatch: 3.1.2 + resolve: 1.22.10 + semver: 6.3.1 + + eslint-plugin-prettier@5.2.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.2(eslint@9.25.0(jiti@2.4.2)))(eslint@9.25.0(jiti@2.4.2))(prettier@3.5.3): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + prettier: 3.5.3 + prettier-linter-helpers: 1.0.0 + synckit: 0.11.4 + optionalDependencies: + '@types/eslint': 9.6.1 + eslint-config-prettier: 10.1.2(eslint@9.25.0(jiti@2.4.2)) + + eslint-plugin-react-hooks@5.2.0(eslint@9.25.0(jiti@2.4.2)): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + + eslint-plugin-react@7.37.5(eslint@9.25.0(jiti@2.4.2)): + dependencies: + array-includes: 3.1.8 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.2.1 + eslint: 9.25.0(jiti@2.4.2) + estraverse: 5.3.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 + + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2)): + dependencies: + eslint: 9.25.0(jiti@2.4.2) + optionalDependencies: + '@typescript-eslint/eslint-plugin': 8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.0(jiti@2.4.2))(typescript@5.8.3) + + eslint-scope@5.1.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + eslint-scope@8.3.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-utils@2.1.0: + dependencies: + eslint-visitor-keys: 1.3.0 + + eslint-visitor-keys@1.3.0: {} + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.0: {} + + eslint@9.25.0(jiti@2.4.2): + dependencies: + '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.0(jiti@2.4.2)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.20.0 + '@eslint/config-helpers': 0.2.1 + '@eslint/core': 0.13.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.25.0 + '@eslint/plugin-kit': 0.2.8 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.2 + '@types/estree': 1.0.7 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.0 + escape-string-regexp: 4.0.0 + eslint-scope: 8.3.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.4.2 + transitivePeerDependencies: + - supports-color + + espree@10.3.0: + dependencies: + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) + eslint-visitor-keys: 4.2.0 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@4.3.0: {} + + estraverse@5.3.0: {} + + estree-util-attach-comments@3.0.0: + dependencies: + '@types/estree': 1.0.7 + + estree-util-build-jsx@3.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-walker: 3.0.3 + + estree-util-is-identifier-name@3.0.0: {} + + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.7 + devlop: 1.1.0 + + estree-util-to-js@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + astring: 1.9.0 + source-map: 0.7.4 + + estree-util-visit@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/unist': 3.0.3 + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.7 + + esutils@2.0.3: {} + + eventemitter3@5.0.1: {} + + events@3.3.0: {} + + execa@8.0.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + + extend@3.0.2: {} + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.1: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fault@1.0.4: + dependencies: + format: 0.2.2 + + fflate@0.6.10: {} + + fflate@0.8.2: {} + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flat@5.0.2: {} + + flatted@3.3.3: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + format@0.2.2: {} + + framer-motion@12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + motion-dom: 12.9.1 + motion-utils: 12.8.3 + tslib: 2.8.1 + optionalDependencies: + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + get-east-asian-width@1.3.0: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-stream@8.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + github-slugger@2.0.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob-to-regexp@0.4.1: {} + + globals@14.0.0: {} + + globals@16.0.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + glsl-noise@0.0.0: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + graphemer@1.4.0: {} + + has-bigints@1.1.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hast-util-from-dom@5.0.1: + dependencies: + '@types/hast': 3.0.4 + hastscript: 9.0.1 + web-namespaces: 2.0.1 + + hast-util-from-html-isomorphic@2.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-dom: 5.0.1 + hast-util-from-html: 2.0.3 + unist-util-remove-position: 5.0.0 + + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.2.1 + vfile: 6.0.3 + vfile-message: 4.0.2 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.0.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-heading-rank@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-parse-selector@2.2.5: {} + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-sanitize@5.0.2: + dependencies: + '@types/hast': 3.0.4 + '@ungap/structured-clone': 1.3.0 + unist-util-position: 5.0.0 + + hast-util-to-estree@3.1.3: + dependencies: + '@types/estree': 1.0.7 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-attach-comments: 3.0.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.0.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.16 + unist-util-position: 5.0.0 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + + hast-util-to-jsx-runtime@2.3.6: + dependencies: + '@types/estree': 1.0.7 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.0.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.16 + unist-util-position: 5.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + hast-util-to-string@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@6.0.0: + dependencies: + '@types/hast': 2.3.10 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.0.0 + space-separated-tokens: 2.0.2 + + highlight.js@10.7.3: {} + + highlightjs-vue@1.0.0: {} + + hls.js@1.6.2: {} + + html-url-attributes@3.0.1: {} + + human-signals@5.0.0: {} + + husky@9.1.7: {} + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + immediate@3.0.6: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + inline-style-parser@0.2.4: {} + + input-otp@1.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + intl-messageformat@10.7.16: + dependencies: + '@formatjs/ecma402-abstract': 2.3.4 + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/icu-messageformat-parser': 2.11.2 + tslib: 2.8.1 + + is-alphabetical@1.0.4: {} + + is-alphabetical@2.0.1: {} + + is-alphanumerical@1.0.4: + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-any-array@2.0.1: {} + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-arrayish@0.3.2: {} + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-decimal@1.0.4: {} + + is-decimal@2.0.1: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-fullwidth-code-point@4.0.0: {} + + is-fullwidth-code-point@5.0.0: + dependencies: + get-east-asian-width: 1.3.0 + + is-generator-function@1.1.0: + dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-hexadecimal@1.0.4: {} + + is-hexadecimal@2.0.1: {} + + is-map@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-plain-obj@4.1.0: {} + + is-promise@2.2.2: {} + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-stream@3.0.0: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + iterator.prototype@1.1.5: + dependencies: + define-data-property: 1.1.4 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 + set-function-name: 2.0.2 + + its-fine@2.0.0(@types/react@19.1.2)(react@19.1.0): + dependencies: + '@types/react-reconciler': 0.28.9(@types/react@19.1.2) + react: 19.1.0 + transitivePeerDependencies: + - '@types/react' + + jest-worker@27.5.1: + dependencies: + '@types/node': 22.14.1 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jiti@2.4.2: {} + + js-tokens@4.0.0: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsx-ast-utils@3.3.5: + dependencies: + array-includes: 3.1.8 + array.prototype.flat: 1.3.3 + object.assign: 4.1.7 + object.values: 1.2.1 + + katex@0.16.22: + dependencies: + commander: 8.3.0 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + language-subtag-registry@0.3.23: {} + + language-tags@1.0.9: + dependencies: + language-subtag-registry: 0.3.23 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lie@3.3.0: + dependencies: + immediate: 3.0.6 + + lightningcss-darwin-arm64@1.29.2: + optional: true + + lightningcss-darwin-x64@1.29.2: + optional: true + + lightningcss-freebsd-x64@1.29.2: + optional: true + + lightningcss-linux-arm-gnueabihf@1.29.2: + optional: true + + lightningcss-linux-arm64-gnu@1.29.2: + optional: true + + lightningcss-linux-arm64-musl@1.29.2: + optional: true + + lightningcss-linux-x64-gnu@1.29.2: + optional: true + + lightningcss-linux-x64-musl@1.29.2: + optional: true + + lightningcss-win32-arm64-msvc@1.29.2: + optional: true + + lightningcss-win32-x64-msvc@1.29.2: + optional: true + + lightningcss@1.29.2: + dependencies: + detect-libc: 2.0.3 + optionalDependencies: + lightningcss-darwin-arm64: 1.29.2 + lightningcss-darwin-x64: 1.29.2 + lightningcss-freebsd-x64: 1.29.2 + lightningcss-linux-arm-gnueabihf: 1.29.2 + lightningcss-linux-arm64-gnu: 1.29.2 + lightningcss-linux-arm64-musl: 1.29.2 + lightningcss-linux-x64-gnu: 1.29.2 + lightningcss-linux-x64-musl: 1.29.2 + lightningcss-win32-arm64-msvc: 1.29.2 + lightningcss-win32-x64-msvc: 1.29.2 + + lilconfig@3.1.3: {} + + lint-staged@15.5.1: + dependencies: + chalk: 5.4.1 + commander: 13.1.0 + debug: 4.4.0 + execa: 8.0.1 + lilconfig: 3.1.3 + listr2: 8.3.2 + micromatch: 4.0.8 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.7.1 + transitivePeerDependencies: + - supports-color + + listr2@8.3.2: + dependencies: + cli-truncate: 4.0.0 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 9.0.0 + + loader-runner@4.3.0: {} + + loader-utils@2.0.4: + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.merge@4.6.2: {} + + log-update@6.1.0: + dependencies: + ansi-escapes: 7.0.0 + cli-cursor: 5.0.0 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 + + longest-streak@3.1.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + lowlight@1.20.0: + dependencies: + fault: 1.0.4 + highlight.js: 10.7.3 + + lucide-react@0.501.0(react@19.1.0): + dependencies: + react: 19.1.0 + + maath@0.10.8(@types/three@0.175.0)(three@0.175.0): + dependencies: + '@types/three': 0.175.0 + three: 0.175.0 + + markdown-extensions@2.0.0: {} + + markdown-table@3.0.4: {} + + markdown-to-jsx@7.7.4(react@19.1.0): + dependencies: + react: 19.1.0 + + math-intrinsics@1.1.0: {} + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-math@3.0.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + longest-streak: 3.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + unist-util-remove-position: 5.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + meshline@3.3.1(three@0.175.0): + dependencies: + three: 0.175.0 + + meshoptimizer@0.18.1: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-math@3.1.0: + dependencies: + '@types/katex': 0.16.7 + devlop: 1.1.0 + katex: 0.16.22 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-expression@3.0.1: + dependencies: + '@types/estree': 1.0.7 + devlop: 1.1.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-jsx@3.0.2: + dependencies: + '@types/estree': 1.0.7 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.2 + + micromark-extension-mdx-md@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-mdxjs-esm@3.0.0: + dependencies: + '@types/estree': 1.0.7 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.2 + + micromark-extension-mdxjs@3.0.0: + dependencies: + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) + micromark-extension-mdx-expression: 3.0.1 + micromark-extension-mdx-jsx: 3.0.2 + micromark-extension-mdx-md: 2.0.0 + micromark-extension-mdxjs-esm: 3.0.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-mdx-expression@2.0.3: + dependencies: + '@types/estree': 1.0.7 + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-events-to-acorn@2.0.3: + dependencies: + '@types/estree': 1.0.7 + '@types/unist': 3.0.3 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.2 + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.0 + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mimic-fn@4.0.0: {} + + mimic-function@5.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + ml-array-max@1.2.4: + dependencies: + is-any-array: 2.0.1 + + ml-array-min@1.2.3: + dependencies: + is-any-array: 2.0.1 + + ml-array-rescale@1.3.7: + dependencies: + is-any-array: 2.0.1 + ml-array-max: 1.2.4 + ml-array-min: 1.2.3 + + ml-distance-euclidean@2.0.0: {} + + ml-kmeans@6.0.0: + dependencies: + ml-distance-euclidean: 2.0.0 + ml-matrix: 6.12.1 + ml-nearest-vector: 2.0.1 + ml-random: 0.5.0 + + ml-matrix@6.12.1: + dependencies: + is-any-array: 2.0.1 + ml-array-rescale: 1.3.7 + + ml-nearest-vector@2.0.1: + dependencies: + ml-distance-euclidean: 2.0.0 + + ml-random@0.5.0: + dependencies: + ml-xsadd: 2.0.0 + + ml-xsadd@2.0.0: {} + + monaco-editor@0.52.2: {} + + motion-dom@12.9.1: + dependencies: + motion-utils: 12.8.3 + + motion-utils@12.8.3: {} + + motion@12.7.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + framer-motion: 12.9.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + tslib: 2.8.1 + optionalDependencies: + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + ms@2.1.3: {} + + nanoid@3.3.11: {} + + natural-compare@1.4.0: {} + + neo-async@2.6.2: {} + + next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + next@15.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + '@next/env': 15.3.1 + '@swc/counter': 0.1.3 + '@swc/helpers': 0.5.15 + busboy: 1.6.0 + caniuse-lite: 1.0.30001714 + postcss: 8.4.31 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + styled-jsx: 5.1.6(react@19.1.0) + optionalDependencies: + '@next/swc-darwin-arm64': 15.3.1 + '@next/swc-darwin-x64': 15.3.1 + '@next/swc-linux-arm64-gnu': 15.3.1 + '@next/swc-linux-arm64-musl': 15.3.1 + '@next/swc-linux-x64-gnu': 15.3.1 + '@next/swc-linux-x64-musl': 15.3.1 + '@next/swc-win32-arm64-msvc': 15.3.1 + '@next/swc-win32-x64-msvc': 15.3.1 + sharp: 0.34.1 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + node-releases@2.0.19: {} + + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.entries@1.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-object-atoms: 1.1.1 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-entities@2.0.0: + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.1.0 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + + parse5@7.2.1: + dependencies: + entities: 4.5.0 + + path-exists@4.0.0: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + path-parse@1.0.7: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + pidtree@0.6.0: {} + + possible-typed-array-names@1.1.0: {} + + postcss@8.4.31: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.3: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + potpack@1.0.2: {} + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@3.5.3: {} + + prismjs@1.27.0: {} + + prismjs@1.30.0: {} + + promise-worker-transferable@1.0.4: + dependencies: + is-promise: 2.2.2 + lie: 3.3.0 + + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + property-information@5.6.0: + dependencies: + xtend: 4.0.2 + + property-information@7.0.0: {} + + punycode@2.3.1: {} + + queue-microtask@1.2.3: {} + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + raw-loader@4.0.2(webpack@5.98.0): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.98.0 + + react-dom@19.1.0(react@19.1.0): + dependencies: + react: 19.1.0 + scheduler: 0.26.0 + + react-is@16.13.1: {} + + react-markdown@10.1.0(@types/react@19.1.2)(react@19.1.0): + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/react': 19.1.2 + devlop: 1.1.0 + hast-util-to-jsx-runtime: 2.3.6 + html-url-attributes: 3.0.1 + mdast-util-to-hast: 13.2.0 + react: 19.1.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + react-monaco-editor@0.58.0(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + monaco-editor: 0.52.2 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + + react-reconciler@0.31.0(react@19.1.0): + dependencies: + react: 19.1.0 + scheduler: 0.25.0 + + react-swipeable@7.0.2(react@19.1.0): + dependencies: + react: 19.1.0 + + react-syntax-highlighter@15.6.1(react@19.1.0): + dependencies: + '@babel/runtime': 7.27.0 + highlight.js: 10.7.3 + highlightjs-vue: 1.0.0 + lowlight: 1.20.0 + prismjs: 1.30.0 + react: 19.1.0 + refractor: 3.6.0 + + react-textarea-autosize@8.5.9(@types/react@19.1.2)(react@19.1.0): + dependencies: + '@babel/runtime': 7.27.0 + react: 19.1.0 + use-composed-ref: 1.4.0(@types/react@19.1.2)(react@19.1.0) + use-latest: 1.3.0(@types/react@19.1.2)(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + + react-three-fiber@6.0.13(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0): + dependencies: + '@react-three/fiber': 9.1.2(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.175.0) + react: 19.1.0 + three: 0.175.0 + optionalDependencies: + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - expo + - expo-asset + - expo-file-system + - expo-gl + - immer + - react-native + + react-use-measure@2.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + optionalDependencies: + react-dom: 19.1.0(react@19.1.0) + + react@19.1.0: {} + + recma-build-jsx@1.0.0: + dependencies: + '@types/estree': 1.0.7 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.3 + + recma-jsx@1.0.0(acorn@8.14.1): + dependencies: + acorn-jsx: 5.3.2(acorn@8.14.1) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - acorn + + recma-parse@1.0.0: + dependencies: + '@types/estree': 1.0.7 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.3 + + recma-stringify@1.0.0: + dependencies: + '@types/estree': 1.0.7 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.3 + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + refractor@3.6.0: + dependencies: + hastscript: 6.0.0 + parse-entities: 2.0.0 + prismjs: 1.27.0 + + regenerator-runtime@0.14.1: {} + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + regexpp@3.2.0: {} + + rehype-katex@7.0.1: + dependencies: + '@types/hast': 3.0.4 + '@types/katex': 0.16.7 + hast-util-from-html-isomorphic: 2.0.0 + hast-util-to-text: 4.0.2 + katex: 0.16.22 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.3 + + rehype-recma@1.0.0: + dependencies: + '@types/estree': 1.0.7 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.3 + transitivePeerDependencies: + - supports-color + + rehype-sanitize@6.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-sanitize: 5.0.2 + + rehype-slug@6.0.0: + dependencies: + '@types/hast': 3.0.4 + github-slugger: 2.0.0 + hast-util-heading-rank: 3.0.0 + hast-util-to-string: 3.0.1 + unist-util-visit: 5.0.0 + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-math@6.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-math: 3.0.0 + micromark-extension-math: 3.1.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-mdx@3.1.0: + dependencies: + mdast-util-mdx: 3.0.0 + micromark-extension-mdxjs: 3.0.0 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.3 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + + require-from-string@2.0.2: {} + + resolve-from@4.0.0: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@2.0.0-next.5: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + scheduler@0.25.0: {} + + scheduler@0.26.0: {} + + schema-utils@3.3.0: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + + schema-utils@4.3.2: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) + + scroll-into-view-if-needed@3.0.10: + dependencies: + compute-scroll-into-view: 3.1.1 + + semver@6.3.1: {} + + semver@7.7.1: {} + + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + sharp@0.34.1: + dependencies: + color: 4.2.3 + detect-libc: 2.0.3 + semver: 7.7.1 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.34.1 + '@img/sharp-darwin-x64': 0.34.1 + '@img/sharp-libvips-darwin-arm64': 1.1.0 + '@img/sharp-libvips-darwin-x64': 1.1.0 + '@img/sharp-libvips-linux-arm': 1.1.0 + '@img/sharp-libvips-linux-arm64': 1.1.0 + '@img/sharp-libvips-linux-ppc64': 1.1.0 + '@img/sharp-libvips-linux-s390x': 1.1.0 + '@img/sharp-libvips-linux-x64': 1.1.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 + '@img/sharp-libvips-linuxmusl-x64': 1.1.0 + '@img/sharp-linux-arm': 0.34.1 + '@img/sharp-linux-arm64': 0.34.1 + '@img/sharp-linux-s390x': 0.34.1 + '@img/sharp-linux-x64': 0.34.1 + '@img/sharp-linuxmusl-arm64': 0.34.1 + '@img/sharp-linuxmusl-x64': 0.34.1 + '@img/sharp-wasm32': 0.34.1 + '@img/sharp-win32-ia32': 0.34.1 + '@img/sharp-win32-x64': 0.34.1 + optional: true + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@4.1.0: {} + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + + slice-ansi@5.0.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + + slice-ansi@7.1.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 5.0.0 + + source-map-js@1.2.1: {} + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.6.1: {} + + source-map@0.7.4: {} + + space-separated-tokens@1.1.5: {} + + space-separated-tokens@2.0.2: {} + + state-local@1.0.7: {} + + stats-gl@2.4.2(@types/three@0.175.0)(three@0.175.0): + dependencies: + '@types/three': 0.175.0 + three: 0.175.0 + + stats.js@0.17.0: {} + + streamsearch@1.1.0: {} + + string-argv@0.3.2: {} + + string-width@7.2.0: + dependencies: + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 + strip-ansi: 7.1.0 + + string.prototype.includes@2.0.1: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + + string.prototype.matchall@4.0.12: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.4 + set-function-name: 2.0.2 + side-channel: 1.1.0 + + string.prototype.repeat@1.0.0: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.9 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom@3.0.0: {} + + strip-final-newline@3.0.0: {} + + strip-json-comments@3.1.1: {} + + style-mod@4.1.2: {} + + style-to-js@1.1.16: + dependencies: + style-to-object: 1.0.8 + + style-to-object@1.0.8: + dependencies: + inline-style-parser: 0.2.4 + + styled-jsx@5.1.6(react@19.1.0): + dependencies: + client-only: 0.0.1 + react: 19.1.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + suspend-react@0.1.3(react@19.1.0): + dependencies: + react: 19.1.0 + + swr@2.3.3(react@19.1.0): + dependencies: + dequal: 2.0.3 + react: 19.1.0 + use-sync-external-store: 1.5.0(react@19.1.0) + + synckit@0.11.4: + dependencies: + '@pkgr/core': 0.2.4 + tslib: 2.8.1 + + tailwind-merge@3.0.2: {} + + tailwind-merge@3.2.0: {} + + tailwind-variants@1.0.0(tailwindcss@4.1.4): + dependencies: + tailwind-merge: 3.0.2 + tailwindcss: 4.1.4 + + tailwindcss@4.1.4: {} + + tapable@2.2.1: {} + + terser-webpack-plugin@5.3.14(webpack@5.98.0): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + jest-worker: 27.5.1 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + terser: 5.39.0 + webpack: 5.98.0 + + terser@5.39.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.14.1 + commander: 2.20.3 + source-map-support: 0.5.21 + + three-mesh-bvh@0.8.3(three@0.175.0): + dependencies: + three: 0.175.0 + + three-stdlib@2.36.0(three@0.175.0): + dependencies: + '@types/draco3d': 1.4.10 + '@types/offscreencanvas': 2019.7.3 + '@types/webxr': 0.5.22 + draco3d: 1.5.7 + fflate: 0.6.10 + potpack: 1.0.2 + three: 0.175.0 + + three@0.175.0: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + tr46@0.0.3: {} + + trim-lines@3.0.1: {} + + troika-three-text@0.52.4(three@0.175.0): + dependencies: + bidi-js: 1.0.3 + three: 0.175.0 + troika-three-utils: 0.52.4(three@0.175.0) + troika-worker-utils: 0.52.0 + webgl-sdf-generator: 1.1.1 + + troika-three-utils@0.52.4(three@0.175.0): + dependencies: + three: 0.175.0 + + troika-worker-utils@0.52.0: {} + + trough@2.2.0: {} + + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@2.8.1: {} + + tunnel-rat@0.1.2(@types/react@19.1.2)(react@19.1.0): + dependencies: + zustand: 4.5.6(@types/react@19.1.2)(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - immer + - react + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typescript@5.8.3: {} + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@6.21.0: {} + + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unist-util-find-after@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position-from-estree@2.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-remove-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-visit: 5.0.0 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + update-browserslist-db@1.1.3(browserslist@4.24.4): + dependencies: + browserslist: 4.24.4 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + use-composed-ref@1.4.0(@types/react@19.1.2)(react@19.1.0): + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.2 + + use-isomorphic-layout-effect@1.2.0(@types/react@19.1.2)(react@19.1.0): + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.2 + + use-latest@1.3.0(@types/react@19.1.2)(react@19.1.0): + dependencies: + react: 19.1.0 + use-isomorphic-layout-effect: 1.2.0(@types/react@19.1.2)(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.2 + + use-sync-external-store@1.5.0(react@19.1.0): + dependencies: + react: 19.1.0 + + utility-types@3.11.0: {} + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-message@4.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.2 + + w3c-keyname@2.2.8: {} + + watchpack@2.4.2: + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + + web-namespaces@2.0.1: {} + + webgl-constants@1.1.1: {} + + webgl-sdf-generator@1.1.1: {} + + webidl-conversions@3.0.1: {} + + webpack-sources@3.2.3: {} + + webpack@5.98.0: + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.7 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + acorn: 8.14.1 + browserslist: 4.24.4 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.18.1 + es-module-lexer: 1.6.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 4.3.2 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.14(webpack@5.98.0) + watchpack: 2.4.2 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + whatwg-url@5.0.0: + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wrap-ansi@9.0.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 7.2.0 + strip-ansi: 7.1.0 + + ws@8.18.1: {} + + xtend@4.0.2: {} + + yaml@2.7.1: {} + + yocto-queue@0.1.0: {} + + zustand@4.5.6(@types/react@19.1.2)(react@19.1.0): + dependencies: + use-sync-external-store: 1.5.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.2 + react: 19.1.0 + + zustand@5.0.3(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)): + optionalDependencies: + '@types/react': 19.1.2 + react: 19.1.0 + use-sync-external-store: 1.5.0(react@19.1.0) + + zwitch@2.0.4: {} diff --git a/lexikon/postcss.config.mjs b/lexikon/postcss.config.mjs new file mode 100644 index 0000000..c4964ca --- /dev/null +++ b/lexikon/postcss.config.mjs @@ -0,0 +1,5 @@ +const config = { + plugins: ["@tailwindcss/postcss"], +}; + +export default config; diff --git a/lexikon/public/assets/examples/hero.jpg b/lexikon/public/assets/examples/hero.jpg new file mode 100644 index 0000000..184d714 Binary files /dev/null and b/lexikon/public/assets/examples/hero.jpg differ diff --git a/lexikon/public/assets/examples/user.png b/lexikon/public/assets/examples/user.png new file mode 100644 index 0000000..e28ad0d Binary files /dev/null and b/lexikon/public/assets/examples/user.png differ diff --git a/lexikon/public/favicon.ico b/lexikon/public/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/lexikon/public/favicon.ico differ diff --git a/lexikon/src/app/(auth)/confirm/route.ts b/lexikon/src/app/(auth)/confirm/route.ts new file mode 100644 index 0000000..14a92fc --- /dev/null +++ b/lexikon/src/app/(auth)/confirm/route.ts @@ -0,0 +1,28 @@ +import { type EmailOtpType } from "@supabase/supabase-js"; +import { type NextRequest } from "next/server"; +import { redirect } from "next/navigation"; +import { supaServer } from "shared/api/supabase/server"; + +export async function GET(request: NextRequest) { + const { searchParams } = new URL(request.url); + const token_hash = searchParams.get("token_hash"); + const type = searchParams.get("type") as EmailOtpType | null; + const next = searchParams.get("next") ?? "/"; + + if (token_hash && type) { + const supabase = await supaServer(); + + const { error } = await supabase.auth.verifyOtp({ + type, + token_hash, + }); + + if (!error) { + // redirect user to specified redirect URL or root of app + redirect(next); + } + } + + // redirect the user to an error page with some instructions + redirect("/error"); +} diff --git a/lexikon/src/app/SideNavContent.tsx b/lexikon/src/app/SideNavContent.tsx new file mode 100644 index 0000000..1082433 --- /dev/null +++ b/lexikon/src/app/SideNavContent.tsx @@ -0,0 +1,189 @@ +"use client"; +import { Divider, Select, SelectItem, Skeleton } from "@heroui/react"; +import { AnimatePresence } from "framer-motion"; +import LibrarianLink from "features/librarian/LibrarianLink"; +import { + CourseListGroupHeader, + CourseListItem, +} from "features/study/components/CourseList"; +import { useState, useCallback, useEffect } from "react"; +import SearchField from "shared/ui/SearchField"; +import { container } from "shared/styles/variants"; +import useCoursesModulesStore from "features/study/stores/coursesStore"; +import { CourseModule } from "shared/domain/course"; +import useTermStore from "features/study/stores/termStore"; +import { Term } from "shared/domain/term"; +import { ChevronsUpDown } from "lucide-react"; + +export default function SidenavContent() { + const { terms, selectedTerm, setSelectedTerm, fetchTerms } = useTermStore(); + + // error is now string | null + const { coursesModules, isLoading, error, loadCoursesModules } = + useCoursesModulesStore(); + + useEffect(() => { + // Fetch terms on mount + fetchTerms(); + + // Set the first term as selected if available + if (terms.length > 0) { + const firstTerm = terms[0]; + if (!selectedTerm) { + setSelectedTerm(firstTerm); + } + } + }, [fetchTerms]); + + useEffect(() => { + if (!selectedTerm) return; + loadCoursesModules(selectedTerm); + }, [selectedTerm, loadCoursesModules]); + + // Debounced search value + const [searchValue, setSearchValue] = useState(""); + const [debouncedSearch, setDebouncedSearch] = useState(""); + useEffect(() => { + const handler = setTimeout(() => { + setDebouncedSearch(searchValue); + }, 100); // 100ms debounce + return () => clearTimeout(handler); + }, [searchValue]); + + const handleSearchChange = useCallback((value: string) => { + setSearchValue(value); + }, []); + const handleSearchClear = useCallback(() => { + setSearchValue(""); + }, []); + // Filter modules by debounced search value (case-insensitive, matches name or code) + const filteredCoursesModules = + coursesModules?.filter((courseModule) => { + if (!debouncedSearch.trim()) return true; + const q = debouncedSearch.trim().toLowerCase(); + return ( + courseModule.module_name.toLowerCase().includes(q) || + (courseModule.module_code?.toLowerCase?.().includes(q) ?? false) + ); + }) || []; + + // Separate filtered modules into favorites and others + const favoriteCoursesModules: CourseModule[] = + filteredCoursesModules.filter( + (courseModule) => courseModule.is_user_favorite + ); + const otherCoursesModules: CourseModule[] = filteredCoursesModules.filter( + (courseModule) => !courseModule.is_user_favorite + ); + + return ( +
+ + + {/* Use theme-aware background color for divider */} + + + {/* Search Field */} + + + {terms.length > 0 ? ( + + ) : ( + + )} + + {/* Course List */} +
+ {isLoading && ( + // Show skeletons while loading +
+ + + + + + + +
+ )} + {error && ( + // Display the error message string +
Error: {error}
+ )} + {!isLoading && !error && coursesModules && ( + // Render favorites then all Modules with toggle + <> + {favoriteCoursesModules.length > 0 && ( + <> + + + {favoriteCoursesModules.map((cm, i) => ( + + ))} + + + )} + + {otherCoursesModules.map((cm, i) => ( + + ))} + + )} +
+
+ ); +} + +const TermSelector = ({ + terms, + selectedTerm, + onSelectTerm, +}: { + terms: Term[]; + selectedTerm: Term | undefined; + onSelectTerm: (term: Term) => void; +}) => { + const defaultKey = selectedTerm?.semester_id ?? terms[0]?.semester_id; + + return ( + + ); +}; diff --git a/lexikon/src/app/api/(study)/course/route.ts b/lexikon/src/app/api/(study)/course/route.ts new file mode 100644 index 0000000..6642f2b --- /dev/null +++ b/lexikon/src/app/api/(study)/course/route.ts @@ -0,0 +1,94 @@ +import { deleteSummary, createSummary, updateSummary } from "@/src/features/study/queries/CRUD-Summaries"; +import { CourseSummary } from "@/src/shared/domain/summary"; + +import { NextResponse } from "next/server"; + + + +interface RequestBody { + moduleid?: number; + termid?: number; + newChapterName?: string; + summary?: CourseSummary; + newContent?: string; +} + +/** + * DELETE /api/summaries + * Deletes the given chapter summary. + */ +export async function DELETE(request: Request) { + try { + const body: RequestBody = await request.json(); + + if (!body.summary) { + return NextResponse.json({ error: "Missing summary" }, { status: 400 }); + } + const result = await deleteSummary(body.summary); + + return NextResponse.json(result); + } catch (error) { + console.error("Error in DELETE /api/summaries:", error); + + return NextResponse.json( + { error: "Failed to delete summary" }, + { status: 500 }, + ); + } +} + +/** + * POST /api/summaries + * Creates a new chapter summary. + */ +export async function POST(request: Request) { + try { + const body: RequestBody = await request.json(); + const { moduleid, termid, newChapterName } = body; + + if (!moduleid || !termid || !newChapterName) { + return NextResponse.json( + { error: "Missing parameters" }, + { status: 400 }, + ); + } + const chapter = await createSummary(moduleid, String(termid), newChapterName); + + return NextResponse.json(chapter); + } catch (error) { + console.error("Error in POST /api/summaries:", error); + + return NextResponse.json( + { error: "Failed to create summary" }, + { status: 500 }, + ); + } +} + +/** + * PATCH /api/summaries + * Updates summary content or renames a chapter. + */ +export async function PATCH(request: Request) { + try { + const body: RequestBody = await request.json(); + + if (body.summary && body.newContent) { + const result = await updateSummary(body.summary, { + newName: body.newChapterName, + content: body.newContent, + }); + + return NextResponse.json(result); + } + + return NextResponse.json({ error: "Invalid parameters" }, { status: 400 }); + } catch (error) { + console.error("Error in PATCH /api/summaries:", error); + + return NextResponse.json( + { error: "Failed to update summary" }, + { status: 500 }, + ); + } +} diff --git a/lexikon/src/app/api/(study)/terms/route.ts b/lexikon/src/app/api/(study)/terms/route.ts new file mode 100644 index 0000000..7391c2f --- /dev/null +++ b/lexikon/src/app/api/(study)/terms/route.ts @@ -0,0 +1,35 @@ +import { fetchTerms } from "features/study/queries/CRUD-Terms"; +import { NextResponse } from "next/server"; + + +export async function GET(request: Request) { + const url = new URL(request.url); + const moduleidParam = url.searchParams.get("moduleid"); + + if (!moduleidParam) { + return NextResponse.json( + { error: "Missing moduleid parameter" }, + { status: 400 }, + ); + } + const moduleid = parseInt(moduleidParam, 10); + + if (isNaN(moduleid)) { + return NextResponse.json( + { error: "Invalid moduleid parameter" }, + { status: 400 }, + ); + } + try { + const terms = await fetchTerms(moduleid); + + return NextResponse.json(terms); + } catch (error) { + console.error("Error in GET /api/terms:", error); + + return NextResponse.json( + { error: "Failed to fetch terms" }, + { status: 500 }, + ); + } +} diff --git a/lexikon/src/app/api/librarian/crawler/download/route.ts b/lexikon/src/app/api/librarian/crawler/download/route.ts new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/src/app/api/librarian/crawler/index/route.ts b/lexikon/src/app/api/librarian/crawler/index/route.ts new file mode 100644 index 0000000..7459120 --- /dev/null +++ b/lexikon/src/app/api/librarian/crawler/index/route.ts @@ -0,0 +1,17 @@ +import { getMockedMoodleIndex } from "features/librarian/queries/crawlerQueries"; +import { NextResponse } from "next/server"; + +export async function GET() { + try { + const moodleIndex = await getMockedMoodleIndex(); + + return NextResponse.json(moodleIndex ?? []); + } catch (error) { + console.error("Error in GET /api/librarian:", error); + + return NextResponse.json( + { error: "Failed to Get MoodleIndex" }, + { status: 500 }, + ); + } +} diff --git a/lexikon/src/app/dashboard/page.tsx b/lexikon/src/app/dashboard/page.tsx new file mode 100644 index 0000000..fc246cf --- /dev/null +++ b/lexikon/src/app/dashboard/page.tsx @@ -0,0 +1,14 @@ +"use client"; + +import { Button } from "@heroui/react"; +import { emptyBucket } from "shared/api/supabase"; + +export default function Dashboard() { + return ( +
+ +
+ ); +} diff --git a/lexikon/src/app/error.tsx b/lexikon/src/app/error.tsx new file mode 100644 index 0000000..9ed5104 --- /dev/null +++ b/lexikon/src/app/error.tsx @@ -0,0 +1,31 @@ +"use client"; + +import { useEffect } from "react"; + +export default function Error({ + error, + reset, +}: { + error: Error; + reset: () => void; +}) { + useEffect(() => { + // Log the error to an error reporting service + /* eslint-disable no-console */ + console.error(error); + }, [error]); + + return ( +
+

Something went wrong!

+ +
+ ); +} diff --git a/lexikon/src/app/layout.tsx b/lexikon/src/app/layout.tsx new file mode 100644 index 0000000..14e71f5 --- /dev/null +++ b/lexikon/src/app/layout.tsx @@ -0,0 +1,58 @@ +import "shared/styles/globals.css"; +import clsx from "clsx"; +import { Metadata, Viewport } from "next"; +import { fontSans } from "shared/config/fonts"; +import { siteConfig } from "shared/config/site"; +import { Providers } from "./providers"; +import { SideNav } from "../features/navigation/sidenav/SideNav"; +import SidenavContent from "./SideNavContent"; + +export const metadata: Metadata = { + title: { + default: siteConfig.name, + template: `%s - ${siteConfig.name}`, + }, + description: siteConfig.description, + icons: { + icon: "/favicon.ico", + }, +}; + +export const viewport: Viewport = { + themeColor: [ + { media: "(prefers-color-scheme: light)", color: "white" }, + { media: "(prefers-color-scheme: dark)", color: "black" }, + ], +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + + +
+ + + +
+ {/* Main content area */} +
{children}
+
+
+
+ + + ); +} diff --git a/lexikon/src/app/librarian/aisanitizer/page.tsx b/lexikon/src/app/librarian/aisanitizer/page.tsx new file mode 100644 index 0000000..48b4b77 --- /dev/null +++ b/lexikon/src/app/librarian/aisanitizer/page.tsx @@ -0,0 +1,44 @@ +'use client'; +import { Spinner } from '@heroui/react'; +import { useEffect, useState } from 'react'; +import ExtractorDataTable from '../components/output/ExtractorDataTable'; +export default function Page() { + const [latestResult, setLatestResult] = useState(null); + + useEffect(() => { + const loadLatestResult = async () => { + const result = await fetch( + `http://localhost:8000/api/runs/AISanitizer/latest` + ); + setLatestResult(await result.json()); + }; + loadLatestResult(); + }, []); + + if (!latestResult) { + return ; + } + + // When no data is found, show a message + if ( + latestResult.data === null || + latestResult.data === undefined || + (Array.isArray(latestResult.data) && latestResult.data.length === 0) + ) { + return ( +
+

No data found.

+
+ ); + } + + return ( +
+
+ {latestResult && ( + + )} +
+
+ ); +} diff --git a/lexikon/src/app/librarian/chunker/page.tsx b/lexikon/src/app/librarian/chunker/page.tsx new file mode 100644 index 0000000..f76638c --- /dev/null +++ b/lexikon/src/app/librarian/chunker/page.tsx @@ -0,0 +1,44 @@ +'use client'; +import { Spinner } from '@heroui/react'; +import { useEffect, useState } from 'react'; +import ChunkerDataTable from '../components/output/ChunkerDataTable'; +export default function Page() { + const [latestResult, setLatestResult] = useState(null); + + useEffect(() => { + const loadLatestResult = async () => { + const result = await fetch( + `http://localhost:8000/api/runs/Chunker/latest` + ); + setLatestResult(await result.json()); + }; + loadLatestResult(); + }, []); + + if (!latestResult) { + return ; + } + + // When no data is found, show a message + if ( + latestResult.data === null || + latestResult.data === undefined || + (Array.isArray(latestResult.data) && latestResult.data.length === 0) + ) { + return ( +
+

No data found.

+
+ ); + } + + return ( +
+
+ {latestResult && ( + + )} +
+
+ ); +} diff --git a/lexikon/src/app/librarian/components/ReuseOutputButton.tsx b/lexikon/src/app/librarian/components/ReuseOutputButton.tsx new file mode 100644 index 0000000..65ac1e8 --- /dev/null +++ b/lexikon/src/app/librarian/components/ReuseOutputButton.tsx @@ -0,0 +1,41 @@ +'use client'; +import { useState } from 'react'; +import { Button } from '@heroui/button'; + +export default function ReuseOutputButton({ + prevRunId, + nextWorker, + flowId, + onStarted, +}: { + prevRunId: string; + nextWorker: string; + flowId: string; + onStarted?: (runId: string) => void; +}) { + const [loading, setLoading] = useState(false); + + const handleClick = async () => { + setLoading(true); + const res = await fetch( + `/api/worker/${nextWorker}/submit/${prevRunId}/chain`, + { method: 'POST' } + ); + const data = await res.json(); + setLoading(false); + if (onStarted && data?.run_id) onStarted(data.run_id); + }; + + return ( + + ); +} diff --git a/lexikon/src/app/librarian/components/WorkerOutputMarkdown.tsx b/lexikon/src/app/librarian/components/WorkerOutputMarkdown.tsx new file mode 100644 index 0000000..e4bcb94 --- /dev/null +++ b/lexikon/src/app/librarian/components/WorkerOutputMarkdown.tsx @@ -0,0 +1,40 @@ +'use client'; +import { useEffect, useState } from 'react'; +import ReactMarkdown from 'react-markdown'; +import MDXPreview from 'shared/ui/markdown/MDXPreview'; + +const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:8000'; + +export default function WorkerOutputMarkdown({ runId }: { runId: string }) { + const [markdown, setMarkdown] = useState(''); + const [error, setError] = useState(null); + + useEffect(() => { + const fetchMarkdown = async () => { + try { + const res = await fetch(`${API_BASE_URL}/api/runs/${runId}/artifact`); + if (!res.ok) { + throw new Error('Failed to fetch markdown'); + } + let md_raw = await res.json(); + md_raw = md_raw.replace(/\\n/g, '\n'); + md_raw = md_raw.replace('"', ''); + setMarkdown(md_raw); + } catch (err) { + setError(err.message); + } + }; + + fetchMarkdown(); + }, [runId]); + + if (error) { + return
Error: {error}
; + } + + return ( +
+ +
+ ); +} diff --git a/lexikon/src/app/librarian/components/WorkerStateChip.tsx b/lexikon/src/app/librarian/components/WorkerStateChip.tsx new file mode 100644 index 0000000..8a79f16 --- /dev/null +++ b/lexikon/src/app/librarian/components/WorkerStateChip.tsx @@ -0,0 +1,27 @@ +'use client'; +import { Chip } from '@heroui/react'; + +const STATE_STYLES: Record = { + PENDING: 'bg-gray-400 text-gray-900', + RUNNING: 'bg-blue-500 text-white animate-pulse', + COMPLETED: 'bg-green-500 text-white', + FAILED: 'bg-red-500 text-white', +}; + +const STATE_LABELS: Record = { + PENDING: 'Pending', + RUNNING: 'Running', + COMPLETED: 'Completed', + FAILED: 'Failed', +}; + +export default function WorkerStateChip({ state }: { state: string }) { + return ( + + {STATE_LABELS[state] || state} + + ); +} diff --git a/lexikon/src/app/librarian/components/output/ChunkerDataTable.tsx b/lexikon/src/app/librarian/components/output/ChunkerDataTable.tsx new file mode 100644 index 0000000..1e651f0 --- /dev/null +++ b/lexikon/src/app/librarian/components/output/ChunkerDataTable.tsx @@ -0,0 +1,164 @@ +import { + Select, + SelectItem, + Table, + TableBody, + TableCell, + TableColumn, + TableHeader, + TableRow, +} from '@heroui/react'; +import { useEffect, useState } from 'react'; + +interface ChunkerData { + terms: { + id: string; + name: string; + courses: { + id: string; + name: string; + chunks: { + id: string; + name: string; + tokens: number; + }[]; + images: string[]; + }[]; + }[]; +} + +export default function ChunkerDataTable({ + chunkerData, +}: { + chunkerData: ChunkerData; + }) { + if (!chunkerData || !chunkerData.terms || chunkerData.terms.length === 0) { + return ( +
+

No data

+
+ ); + } + // Initialize selected term to the first term in the program + const [selectedTerm, setSelectedTerm] = useState( + chunkerData.terms[0] || null + ); + + const [selectedCourse, setSelectedCourse] = + useState(null); // Initialize to null + + const [flattenedChunks, setFlattenedChunks] = useState( + [] + ); + + const getFlattenedChunks = (course: ChunkedCourse | null) => { + return course?.chunks.map((chunk) => ({ + id: chunk.id, + name: chunk.name, + tokens: chunk.tokens, + })); + }; + + useEffect(() => { + if (selectedTerm) { + setSelectedCourse(selectedTerm.courses[0] || null); + } + }, [selectedTerm]); + + useEffect(() => { + if (selectedTerm && selectedCourse) { + setFlattenedChunks(getFlattenedChunks(selectedCourse)); + } + }, [selectedCourse]); + + return ( +
+ {/* Term Selector */} +
+ + + {/* Course Selector */} + +
+ + + + {/* Courses Table */} + {selectedTerm && selectedCourse && flattenedChunks && ( +
+
+ + + + Name + + + Tokens + + + + {flattenedChunks.map((chunk, i) => { + return ( + + + {chunk.name} + + + {chunk.tokens} + + + ); + })} + +
+
+
+ )} +
+ ); +} diff --git a/lexikon/src/app/librarian/components/output/DegreeProgramTable.tsx b/lexikon/src/app/librarian/components/output/DegreeProgramTable.tsx new file mode 100644 index 0000000..0da93c7 --- /dev/null +++ b/lexikon/src/app/librarian/components/output/DegreeProgramTable.tsx @@ -0,0 +1,127 @@ +import { + Select, + SelectItem, + Table, + TableBody, + TableCell, + TableColumn, + TableHeader, + TableRow, +} from '@heroui/react'; +import { useState } from 'react'; + +interface DegreeProgram { + terms: { + id: string; + name: string; + courses: { + id: string; + name: string; + hero_image: string; + content_ressource_id: string; + files: string[]; + }[]; + }[]; +} + +export default function DegreeProgramTable({ program }: { program: DegreeProgram }) { + if (!program || !program.terms || program.terms.length === 0) { + return ( +
+

+ No data +

+
+ ); + } + // Initialize selected term to the first term in the program + const [selectedTermId, setSelectedTermId] = useState( + program.terms[0]?.id || '' + ); + // Find the term object corresponding to the selected ID + const selectedTerm = + program.terms.find((term) => term.id === selectedTermId) || + program.terms[0]; + + return ( +
+ {/* Term Selector */} + + + + {/* Courses Table */} + {selectedTerm && ( +
+ + + + Course Name + + + Hero Image + + + Content ID + + + Files + + + + {selectedTerm.courses.map((course) => ( + + + {course.name} + + + {course.hero_image ? ( + {course.name} + ) : ( + + No image + + )} + + + {course.content_ressource_id} + + + {course.files && + course.files.length > 0 ? ( + course.files.join(', ') + ) : ( + + None + + )} + + + ))} + +
+
+ )} +
+ ); +} diff --git a/lexikon/src/app/librarian/components/output/DownloadDataTable.tsx b/lexikon/src/app/librarian/components/output/DownloadDataTable.tsx new file mode 100644 index 0000000..52796ec --- /dev/null +++ b/lexikon/src/app/librarian/components/output/DownloadDataTable.tsx @@ -0,0 +1,93 @@ +import { + Select, + SelectItem, + Table, + TableBody, + TableCell, + TableColumn, + TableHeader, + TableRow, +} from '@heroui/react'; +import { useState } from 'react'; + +interface DownloadData { + terms: { + id: string; + name: string; + courses: { + id: string; + name: string; + }[]; + }[]; +} + +export default function DownloadDataTable({ + downloadData, +}: { + downloadData: DownloadData; +}) { + if (!downloadData || !downloadData.terms) { + return
No data available
; + } + // Initialize selected term to the first term in the program + const [selectedTermId, setSelectedTermId] = useState( + downloadData.terms[0]?.id || '' + ); + // Find the term object corresponding to the selected ID + const selectedTerm = + downloadData.terms.find((term) => term.id === selectedTermId) || + downloadData.terms[0]; + + return ( +
+ {/* Term Selector */} + + + + {/* Courses Table */} + {selectedTerm && ( +
+ + + + Course Name + + + ID + + + + {selectedTerm.courses.map((course) => ( + + + {course.name} + + + {course.id} + + + ))} + +
+
+ )} +
+ ); +} diff --git a/lexikon/src/app/librarian/components/output/ExtractorDataTable.tsx b/lexikon/src/app/librarian/components/output/ExtractorDataTable.tsx new file mode 100644 index 0000000..a3caccd --- /dev/null +++ b/lexikon/src/app/librarian/components/output/ExtractorDataTable.tsx @@ -0,0 +1,238 @@ +import { + Select, + SelectItem, + Table, + TableBody, + TableCell, + TableColumn, + TableHeader, + TableRow, +} from '@heroui/react'; +import { FileText, Image } from 'lucide-react'; +import { useEffect, useState } from 'react'; + +type FlattenedFiles = { + id: string; + name: string; + chapter_name: string; + type: 'content' | 'media'; +}[]; + +type ExtractedCourse = { + id: string; + name: string; + chapters: { + id: string; + name: string; + content_files: { + id: string; + name: string; + }[]; + media_files: { + id: string; + name: string; + }[]; + }[]; +}; +interface ExtractData { + terms: { + id: string; + name: string; + courses: ExtractedCourse[]; + }[]; +} + +export default function ExtractorDataTable({ data }: { data: ExtractData }) { + if (!data || !data.terms || data.terms.length === 0) { + return ( +
+

No data

+
+ ); + } + + // Initialize selected term to the first term in the program + const [selectedTermId, setSelectedTermId] = useState( + data.terms[0]?.id || '' + ); + // Find the term object corresponding to the selected ID + const selectedTerm = + data.terms.find((term) => term.id === selectedTermId) || + (data.terms.length > 0 ? data.terms[0] : null); + + const [selectedCourse, setSelectedCourse] = + useState(null); // Initialize to null + + const [flattenedFiles, setFlattenedFiles] = useState([]); + + // Effect 1: Ensure selectedCourse is valid for the current selectedTerm, + // and updates it if the selectedTerm changes and the course becomes invalid, + // or to set an initial course. + useEffect(() => { + if (selectedTerm) { + const courseIsInCurrentTerm = selectedTerm.courses.some( + (c) => c.id === selectedCourse?.id + ); + if (!courseIsInCurrentTerm) { + // If selectedCourse is not in the current selectedTerm (e.g., term changed, initial load, or course became invalid) + // then set to the first course of the current selectedTerm. + setSelectedCourse(selectedTerm.courses[0] || null); + } + // If courseIsInCurrentTerm is true, it means: + // 1. User selected a course within the current term - their selection is preserved. + // 2. Term changed, and the previous selectedCourse happens to be valid in the new term - selection preserved. + } else { + // No term selected (e.g., data.terms is empty) + setSelectedCourse(null); + } + }, [selectedTerm, selectedCourse?.id]); // Re-run if selectedTerm object changes or selectedCourse.id changes + + // Effect 2: Update flattenedFiles when selectedCourse changes + useEffect(() => { + setFlattenedFiles(getFlattenedFiles(selectedCourse)); + }, [selectedCourse]); // Only depends on selectedCourse + + // Instead of having a list of chapters, with a list of content and media files, we want to have a single list of files, but keep the chapter name + const getFlattenedFiles = ( + course: ExtractedCourse | null + ): FlattenedFiles => { + const flattenedFiles: FlattenedFiles = []; + if (!course || !course.chapters) { + return flattenedFiles; + } + course.chapters.forEach((chapter) => { + chapter.content_files.forEach((file) => { + flattenedFiles.push({ + id: file.id, + name: file.name, + chapter_name: chapter.name, + type: 'content', + }); + }); + chapter.media_files.forEach((file) => { + flattenedFiles.push({ + id: file.id, + name: file.name, + chapter_name: chapter.name, + type: 'media', + }); + }); + }); + return flattenedFiles; + }; + + return ( +
+ {/* Term Selector */} +
+ + + {/* Course Selector */} + +
+ + {/* Courses Table */} + {selectedTerm && selectedCourse && ( +
+
+ + + + Name + + + Chapter + + + Type + + + + {flattenedFiles.map((file, i) => { + const isNewChapter = + file.chapter_name != + flattenedFiles[i - 1] + ?.chapter_name && i; + const nextChapterNew = + flattenedFiles[i + 1]?.chapter_name != + file.chapter_name && i; + const pd = isNewChapter + ? 'py-4 pt-6' + : nextChapterNew + ? 'py-4 pb-6' + : 'py-4'; + return ( + + + {file.name} + + + {file.chapter_name} + + + {file.type === 'content' ? ( + + ) : ( + + )} + + + ); + })} + +
+
+
+ )} +
+ ); +} diff --git a/lexikon/src/app/librarian/crawler/page.tsx b/lexikon/src/app/librarian/crawler/page.tsx new file mode 100644 index 0000000..fa48f36 --- /dev/null +++ b/lexikon/src/app/librarian/crawler/page.tsx @@ -0,0 +1,82 @@ +'use client'; +import { Button, Spinner } from '@heroui/react'; +import { useEffect, useState } from 'react'; +import DegreeProgramTable from '../components/output/DegreeProgramTable'; +export default function Page() { + const [latestResult, setLatestResult] = useState(null); + const [isCrawling, setIsCrawling] = useState(false); + + useEffect(() => { + const loadLatestResult = async () => { + const result = await fetch( + `http://localhost:8000/api/runs/Crawler/latest` + ); + setLatestResult(await result.json()); + }; + loadLatestResult(); + }, []); + + const submitCrawler = async () => { + setIsCrawling(true); + const body = { + data: { + name: 'Computational and Data Science', + id: '1157', + }, + }; + const result = await fetch( + `http://localhost:8000/api/worker/Crawler/submit`, + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(body), + } + ); + setLatestResult(await result.json()); + setIsCrawling(false); + }; + + if (!latestResult) { + return ; + } + + // When no degree program is found, show a message with a button to start a new crawl + if ( + latestResult.data?.degree_program === null || + latestResult.data?.degree_program === undefined + ) { + return isCrawling ? ( +
+ <> + +

+ Crawling in progress... +

+ +
+ ) : ( +
+

+ No data found. Please start a new crawl. +

+ +
+ ); + } + + return ( +
+
+ {latestResult && ( + + )} +
+
+ ); +} diff --git a/lexikon/src/app/librarian/downloader/page.tsx b/lexikon/src/app/librarian/downloader/page.tsx new file mode 100644 index 0000000..50b0df1 --- /dev/null +++ b/lexikon/src/app/librarian/downloader/page.tsx @@ -0,0 +1,44 @@ +'use client'; +import { Spinner } from '@heroui/react'; +import { useEffect, useState } from 'react'; +import DownloadDataTable from '../components/output/DownloadDataTable'; +export default function Page() { + const [latestResult, setLatestResult] = useState(null); + + useEffect(() => { + const loadLatestResult = async () => { + const result = await fetch( + `http://localhost:8000/api/runs/Downloader/latest` + ); + setLatestResult(await result.json()); + }; + loadLatestResult(); + }, []); + + if (!latestResult) { + return ; + } + + // When no data is found, show a message + if ( + latestResult.data === null || + latestResult.data === undefined || + (Array.isArray(latestResult.data) && latestResult.data.length === 0) + ) { + return ( +
+

No data found.

+
+ ); + } + + return ( +
+
+ {latestResult && ( + + )} +
+
+ ); +} diff --git a/lexikon/src/app/librarian/extractor/page.tsx b/lexikon/src/app/librarian/extractor/page.tsx new file mode 100644 index 0000000..c17c6ce --- /dev/null +++ b/lexikon/src/app/librarian/extractor/page.tsx @@ -0,0 +1,44 @@ +'use client'; +import { Spinner } from '@heroui/react'; +import { useEffect, useState } from 'react'; +import ExtractorDataTable from '../components/output/ExtractorDataTable'; +export default function Page() { + const [latestResult, setLatestResult] = useState(null); + + useEffect(() => { + const loadLatestResult = async () => { + const result = await fetch( + `http://localhost:8000/api/runs/Extractor/latest` + ); + setLatestResult(await result.json()); + }; + loadLatestResult(); + }, []); + + if (!latestResult) { + return ; + } + + // When no data is found, show a message + if ( + latestResult.data === null || + latestResult.data === undefined || + (Array.isArray(latestResult.data) && latestResult.data.length === 0) + ) { + return ( +
+

No data found.

+
+ ); + } + + return ( +
+
+ {latestResult && ( + + )} +
+
+ ); +} diff --git a/lexikon/src/app/librarian/layout.tsx b/lexikon/src/app/librarian/layout.tsx new file mode 100644 index 0000000..07b6615 --- /dev/null +++ b/lexikon/src/app/librarian/layout.tsx @@ -0,0 +1,286 @@ +'use client'; + +import { Button } from '@heroui/button'; +import { Spinner } from '@heroui/react'; +import { TopToolbar } from 'features/navigation/TopToolBar'; +import { ArrowDown, ArrowRight, LinkIcon, Rotate3D } from 'lucide-react'; // Import LinkIcon, ArrowDown, ArrowRight +import { usePathname, useRouter } from 'next/navigation'; +import { useEffect, useState } from 'react'; +import { + SequenceValidationResult, + validateWorkerSequence, +} from 'shared/utils/sequenceValidator'; + +interface WorkerMeta { + name: string; + input: string; // The Input Type of the Worker + output: string; // The Output Type of the Worker +} + +export default function Layout({ children }: { children: React.ReactNode }) { + const [url, setUrl] = useState(''); + const router = useRouter(); + const pathname = usePathname(); + const [workers, setWorkers] = useState([]); + const [selectedWorkerName, setSelectedWorkerName] = useState( + null + ); + const [selectedWorkerIndex, setSelectedWorkerIndex] = useState(-1); // New state for index + const [inputOutputColors, setInputOutputColors] = useState< + Record + >({}); + const [isChaining, setIsChaining] = useState(false); // State for chain button loading + + // Infer selected worker from the route (case-insensitive, match by lowercased name) + useEffect(() => { + const match = pathname.match(/^\/librarian\/?([^\/?#]*)/i); + if (match && match[1] && workers.length > 0) { + const routeName = match[1].toLowerCase(); + const foundIndex = workers.findIndex( + (w) => w.name.toLowerCase() === routeName + ); + if (foundIndex !== -1) { + setSelectedWorkerName(workers[foundIndex].name); + setSelectedWorkerIndex(foundIndex); + } else { + setSelectedWorkerName(null); + setSelectedWorkerIndex(-1); + } + } else if (workers.length > 0) { + setSelectedWorkerName(null); // Or select none if URL is just /librarian + setSelectedWorkerIndex(-1); + } else { + setSelectedWorkerName(null); + setSelectedWorkerIndex(-1); + } + }, [pathname, workers, router]); + + useEffect(() => { + const fetchWorkers = async () => { + try { + const res = await fetch(`http://localhost:8000/api/worker/`); + if (!res.ok) { + console.error(`Error fetching workers: ${res.status}`); + setWorkers([]); + setInputOutputColors({}); + return; + } + const data: WorkerMeta[] = await res.json(); + if (data && data.length > 0) { + const validationResult: SequenceValidationResult = + validateWorkerSequence(data); + if (validationResult.isValid) { + setWorkers(validationResult.sequence); + gen_input_output_colors(validationResult.sequence); + } else { + console.error( + 'Failed to build worker sequence:', + validationResult.error + ); + setWorkers([]); + setInputOutputColors({}); + } + } else { + setWorkers([]); + setInputOutputColors({}); + } + } catch (error) { + console.error('Exception while fetching workers:', error); + setWorkers([]); + setInputOutputColors({}); + } + }; + fetchWorkers(); + }, []); + + const gen_input_output_colors = (currentWorkers: WorkerMeta[]) => { + const new_input_output_colors: Record = {}; + const uniqueTypesSet = new Set(); + + currentWorkers.forEach((worker) => { + uniqueTypesSet.add(worker.input); + uniqueTypesSet.add(worker.output); + }); + + // Sort unique types for deterministic color assignment + const sortedUniqueTypes = Array.from(uniqueTypesSet).sort(); + + const goldenRatioConjugate = 0.618033988749895; // (Math.sqrt(5) - 1) / 2 + const saturation = 0.7; // Adjusted for better visibility + const lightness = 0.55; // Adjusted for better visibility + + sortedUniqueTypes.forEach((type, index) => { + // Generate hue systematically + const hue = (index * goldenRatioConjugate) % 1; + new_input_output_colors[type] = `hsl(${hue * 360}, ${ + saturation * 100 + }%, ${lightness * 100}%)`; + }); + setInputOutputColors(new_input_output_colors); + }; + + const handleChainOutput = async ( + currentWorkerName: string, + previousWorkerName: string + ) => { + setIsChaining(true); + try { + const res = await fetch( + `http://localhost:8000/api/worker/${currentWorkerName}/submit/${previousWorkerName}/chain/latest`, + { + method: 'POST', + } + ); + if (!res.ok) { + const errorText = await res.text(); + console.error( + `Error chaining output: ${res.status} - ${errorText}` + ); + alert(`Error chaining output: ${res.status} - ${errorText}`); + return; + } + // Output chained successfully, now refresh the current route + router.refresh(); + } catch (error) { + console.error('Exception while chaining output:', error); + alert(`An exception occurred while chaining output: ${error}`); + } finally { + setIsChaining(false); + } + }; + + return ( +
+ +
+
+ {workers.length === 0 ? ( +
+ +
+ ) : ( +
    +
  • + +
  • + + {workers.map((worker, i) => { + const isActive = i <= selectedWorkerIndex; + const isCurrent = i === selectedWorkerIndex; + + return ( +
  • +
    +
    + {i + 1} +
    + {i < workers.length - 1 && ( +
    + )} +
    +
    + + {isCurrent && + selectedWorkerIndex > 0 && + workers[ + selectedWorkerIndex - 1 + ] && ( + + )} +
    +
  • + ); + })} +
+ )} +
+
+ {children} +
+
+
+ ); +} diff --git a/lexikon/src/app/librarian/page.tsx b/lexikon/src/app/librarian/page.tsx new file mode 100644 index 0000000..bec4a4f --- /dev/null +++ b/lexikon/src/app/librarian/page.tsx @@ -0,0 +1,3 @@ +export default function Page() { + return
Please select a worker
; +} diff --git a/lexikon/src/app/librarian/vspace/data.ts b/lexikon/src/app/librarian/vspace/data.ts new file mode 100644 index 0000000..2b0a3a1 --- /dev/null +++ b/lexikon/src/app/librarian/vspace/data.ts @@ -0,0 +1,24 @@ +// src/types.ts +export interface DataPoint { + chunk_1024_embeddings_id: number; + chunk: string; + course_id: number; + file_id: number; + source_file: string | null; + file_type: string; + object_id: string | null; + // embedding: number[]; // Für den Plot nicht direkt benötigt + created_at: string; + updated_at: string; + x: number; + y: number; + z: number; + cluster: string; // Als String für kategoriale Farben + hover_text: string; +} + +export interface LoadedData { + columns: string[]; + index: number[]; + data: any[][]; +} diff --git a/lexikon/src/app/librarian/vspace/page.tsx b/lexikon/src/app/librarian/vspace/page.tsx new file mode 100644 index 0000000..1d979cf --- /dev/null +++ b/lexikon/src/app/librarian/vspace/page.tsx @@ -0,0 +1,14 @@ +'use client'; +import React from 'react'; +import TsnePlot from '../../../features/tsnePlot/TsnePlot'; + +const HomePage: React.FC = () => { + return ( +
+ {/* Optional: Header oder andere UI-Elemente */} + +
+ ); +}; + +export default HomePage; diff --git a/lexikon/src/app/librarian/vspace/page_old.tsx b/lexikon/src/app/librarian/vspace/page_old.tsx new file mode 100644 index 0000000..492be23 --- /dev/null +++ b/lexikon/src/app/librarian/vspace/page_old.tsx @@ -0,0 +1,204 @@ +'use client'; // Ensure this is at the top if not already present +import TsnePlotView, { + DataPoint, +} from 'features/tsnePlot/tsnePlotView'; // Corrected import path +import { kmeans } from 'ml-kmeans'; // Import kmeans +import { useEffect, useState } from 'react'; + +// Define a more specific type for your t-SNE data structure if possible +interface TsneDataType { + columns: string[]; + index: number[]; + data: (string | number | number[] | null)[][]; +} + +// Pre-defined color palette for clusters +const clusterColors: { [key: string]: string } = {}; + +// Function to generate a color if not predefined, or get a consistent random color based on clusterId +const getClusterColor = (clusterId: string): string => { + if (clusterColors[clusterId]) { + return clusterColors[clusterId]; + } + let hash = 0; + for (let i = 0; i < clusterId.length; i++) { + hash = clusterId.charCodeAt(i) + ((hash << 5) - hash); + hash = hash & hash; // Convert to 32bit integer + } + const color = `#${`00000${(hash & 0xffffff).toString(16)}`.slice(-6)}`; + clusterColors[clusterId] = color; // Cache for future use + return color; +}; + +// Function to calculate Sum of Squared Errors (SSE) +const calculateSSE = ( + points: number[][], + assignments: number[], + centroids: number[][] +): number => { + let sse = 0; + points.forEach((point, i) => { + const centroid = centroids[assignments[i]]; + if (point && centroid) { + const distance = point.reduce( + (sum, val, dim) => sum + (val - centroid[dim]) ** 2, + 0 + ); + sse += distance; + } + }); + return sse; +}; + +// Helper function to transform data and apply k-means +const processDataWithKMeans = (rawData: TsneDataType): DataPoint[] => { + console.log( + 'Raw data for clustering (first 5 items, showing elements 10, 11, 12):', + rawData.data.slice(0, 5).map((item) => [item[10], item[11], item[12]]) + ); // Log first 5 position data candidates + const positions = rawData.data + .map((item) => [item[10], item[11], item[12]] as number[]) + .filter( + (pos) => + Array.isArray(pos) && + pos.length === 3 && + pos.every((p) => typeof p === 'number' && !isNaN(p)) // Ensure they are valid numbers + ); + + if (positions.length === 0) { + console.error('No valid position data found for clustering.'); + return []; + } + + // Elbow method to find optimal k + const sseValues: { k: number; sse: number }[] = []; + const maxK = Math.min(10, positions.length); // Test up to 10 clusters or number of points + console.log(`Running Elbow method for k from 2 to ${maxK}`); + + for (let k = 2; k <= maxK; k++) { + try { + const ans = kmeans(positions, k, { initialization: 'kmeans++' }); + const sse = calculateSSE( + positions, + ans.clusters, + ans.centroids // Corrected: ans.centroids is already number[][] + ); + sseValues.push({ k, sse }); + console.log(`SSE for k=${k}: ${sse}`); + } catch (error) { + console.error(`Error running kmeans for k=${k}:`, error); + // If k is too large for the number of unique points, kmeans might fail. + break; + } + } + + let optimalK = maxK > 1 ? 2 : 1; // Default to 2 clusters if possible + if (sseValues.length > 1) { + // Find the elbow: a simple approach is to look for a significant drop in SSE decrease rate + // This is a heuristic. A more robust method might involve analyzing the second derivative or a threshold. + let maxDiff = 0; + let bestKIndex = 0; + + for (let i = 0; i < sseValues.length - 1; i++) { + const diff = sseValues[i].sse - sseValues[i + 1].sse; + if (i > 0) { + const prevDiff = sseValues[i - 1].sse - sseValues[i].sse; + // If the current drop is much smaller than the previous one, consider the previous k as elbow + if (prevDiff > diff * 2 && prevDiff > maxDiff) { + maxDiff = prevDiff; + bestKIndex = i; + } + } + } + // If no clear elbow by the above heuristic, pick k where SSE reduction starts to diminish + // Or, more simply, pick the k that had the largest single drop from k-1 to k, after the first one. + if (bestKIndex === 0 && sseValues.length > 1) { + // Fallback if the above heuristic didn't find a clear elbow + optimalK = sseValues[0].k; // Start with the first k + let largestDrop = 0; + for (let i = 0; i < sseValues.length - 1; i++) { + const drop = sseValues[i].sse - sseValues[i + 1].sse; + if (drop > largestDrop) { + largestDrop = drop; + optimalK = sseValues[i + 1].k; + } + } + } else if (sseValues[bestKIndex]) { + optimalK = sseValues[bestKIndex].k; + } + } else if (sseValues.length === 1) { + optimalK = sseValues[0].k; + } + console.log(`Optimal k determined: ${optimalK}`); + + // Run k-means with optimal k + const finalResult = kmeans(positions, optimalK, { + initialization: 'kmeans++', + }); + + let dataPointIndex = 0; + return rawData.data.map((item, originalIndex) => { + const posArray = [item[10], item[11], item[12]]; + let clusterId = `cluster-undefined`; + let finalPosition: [number, number, number]; + + // Check if this point was included in clustering (it might have been filtered out if invalid) + if ( + Array.isArray(posArray) && + posArray.length === 3 && + posArray.every((p) => typeof p === 'number' && !isNaN(p)) + ) { + finalPosition = posArray as [number, number, number]; + if (dataPointIndex < finalResult.clusters.length) { + clusterId = `cluster-${finalResult.clusters[dataPointIndex]}`; + } + dataPointIndex++; + } else { + // Fallback for invalid or filtered out points + finalPosition = [ + (Math.random() - 0.5) * 10, + (Math.random() - 0.5) * 10, + (Math.random() - 0.5) * 10, + ]; + } + + return { + id: String(item[3] || `point-${originalIndex}`), // item[3] is 'id' + position: finalPosition, + color: getClusterColor(clusterId), + clusterId: clusterId, + }; + }); +}; + +export default function VSpacePage() { + const [plotData, setPlotData] = useState([]); + + useEffect(() => { + const typedTsneData: TsneDataType = tsneDataJson as TsneDataType; + const processedData = processDataWithKMeans(typedTsneData); + setPlotData(processedData); + }, []); + + if (plotData.length === 0) { + return
Loading and processing data...
; // Or some other loading indicator + } + + return ( +
+

+ VSpace Page with K-Means Clustering +

+
+ +
+
+ ); +} diff --git a/lexikon/src/app/librarian/vspace/tsne_data.ts b/lexikon/src/app/librarian/vspace/tsne_data.ts new file mode 100644 index 0000000..1eacbe1 --- /dev/null +++ b/lexikon/src/app/librarian/vspace/tsne_data.ts @@ -0,0 +1,56347 @@ + +const tsneData = { + "columns": [ + "chunk_1024_embeddings_id", + "chunk", + "course_id", + "file_id", + "source_file", + "file_type", + "object_id", + "embedding", + "created_at", + "updated_at", + "x", + "y", + "z", + "cluster", + "hover_text" + ], + "index": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ], + "data": [ + [ + 11680, + "Fallbeispiel\n26", + 18240, + 15497727, + null, + "md", + null, + [ + 0.26656806, + 0.5253133, + 0.48931304, + -0.7356992, + -0.74937826, + 0.11828868, + -0.17567016, + 1.0539167, + -0.6556967, + -1.1363449, + 0.59633434, + 0.7216692, + 0.5009073, + 0.22413087, + 0.051205747, + -0.27063003, + -0.6022064, + -0.28698733, + -0.30200198, + -0.37739652, + -0.46618682, + 0.06087881, + -0.32322696, + 0.6103993, + -0.39389443, + -0.36408284, + -0.06465165, + -0.25247136, + 0.29849216, + -0.329827, + 0.15293445, + 0.4391276, + -0.31882104, + -1.1607982, + 0.29291245, + 0.15577278, + 0.48590055, + -0.3544446, + -1.0439099, + 0.31719062, + -0.24835658, + 0.90581405, + -0.41005722, + -0.48515812, + -0.39847326, + -0.50715244, + 0.56266606, + -0.6822293, + -0.26057157, + 0.45712548, + -0.39637214, + 0.1647966, + 0.56844103, + -0.1755153, + 0.014567126, + 0.14899859, + -0.6519034, + 0.055350937, + 0.56038535, + 0.024977146, + -0.2422539, + -0.03229313, + -0.4092406, + -0.4774099, + 0.21014415, + -0.3916191, + 0.5014661, + -0.2616044, + 0.32053307, + -0.0119501315, + 0.0020810738, + -0.20608665, + 1.5120302, + 0.27151453, + -0.56938565, + -0.5938383, + -0.15028925, + 0.5248443, + -0.07836835, + 0.5862071, + 1.9518499, + -0.29352084, + 0.16167137, + 0.6656772, + -0.64406455, + 0.14786011, + 0.29126352, + 0.40705577, + 0.35676283, + -0.70462024, + -0.2845476, + -0.20026281, + 0.16994011, + 0.56802464, + 0.102048956, + 0.06729406, + -0.8646794, + -0.02687789, + 0.9970468, + 0.5349855, + -0.016164992, + 0.12714043, + 0.19145852, + -0.4511863, + -0.13893025, + -0.21061097, + 0.017473783, + 0.50224406, + -0.39983827, + 0.3322587, + 0.8150785, + -0.20400569, + 0.30269042, + -0.050447002, + 0.12337914, + -0.1522372, + -0.08428399, + 0.6042814, + 0.263124, + 0.53562266, + -0.40173313, + -0.760457, + 0.4933507, + -0.5390687, + -0.7922663, + -0.32986876, + 0.5690958, + 0.0022670329, + -0.5344524, + 0.12269394, + 0.062258597, + 0.035294395, + 0.38164723, + 0.031857587, + -0.6859449, + -0.5394271, + 0.61993945, + -0.09601092, + 0.5261599, + -0.8607084, + -0.338204, + 0.34294045, + 0.17505255, + 0.10175794, + 0.2897252, + -0.3890931, + -0.107151136, + -0.59475565, + 0.41035452, + -0.43786067, + 0.36351028, + -0.068275586, + 1.1509488, + -0.49508047, + -0.26332015, + -0.24175367, + -0.49321502, + 0.15217349, + 0.17802197, + -0.16390277, + 0.20737249, + 0.31161678, + -0.59115326, + -1.9579428, + 0.5080412, + 0.35225263, + -0.46993, + -0.1142135, + -0.3094358, + -0.40894303, + 0.17217349, + -0.131535, + 0.66721207, + -0.39847577, + -0.07186281, + 1.1062379, + 0.5459901, + 0.19205517, + -0.05452239, + -0.3005535, + 0.18785034, + -0.019584786, + -0.15299694, + 0.802385, + -0.09650222, + 0.6198228, + 0.33676514, + 0.26600185, + -0.15315658, + 0.23925877, + 0.44982696, + -0.5339282, + -0.2574655, + 0.051052533, + 0.68586266, + 0.44841826, + -0.1668159, + 0.3570672, + 0.055192806, + 0.23274027, + 0.03289677, + -0.6316706, + -0.96117246, + -0.8100191, + -0.021939987, + 0.20976685, + -0.83067364, + -0.06156082, + 0.20507357, + -0.3007136, + 0.019340632, + 0.5069736, + 0.4016804, + -0.15571849, + -0.06319993, + 0.7716033, + 0.6118568, + 0.20583045, + -0.55439335, + -0.2916159, + 0.7449908, + -0.14526516, + -0.58760405, + 0.44352487, + 0.9608145, + -0.35435525, + 0.17291194, + 0.92847687, + -0.09001401, + -0.3205087, + -0.17437813, + -0.67812747, + -0.67034125, + -0.19794634, + -0.19659679, + -0.22707082, + 0.13876869, + -0.16198131, + 0.27141014, + 0.60070467, + -0.83412427, + -0.4884097, + 1.1916966, + 0.5992131, + 0.15530436, + -0.45891368, + 0.28257093, + -0.13938622, + -0.33365512, + -0.2769592, + 0.7178056, + -0.3953045, + -0.4527607, + -0.7756728, + -0.050965626, + 0.69193256, + -0.122562796, + -0.14252001, + -0.07179728, + -0.17818126, + -0.23219071, + 0.3671777, + -0.15175822, + 0.03317584, + 0.021921713, + 0.10991608, + -0.5901838, + 0.50541586, + -0.04740849, + -0.007759366, + -0.62483805, + 0.09735039, + -0.18309906, + -0.059315503, + 0.10978291, + 0.042852264, + -0.46170902, + -0.29204062, + 0.09641246, + 0.028764758, + 0.20062308, + 0.13238396, + -0.042635337, + -0.425279, + 0.3805701, + -0.7323642, + 0.14837202, + 0.41014558, + 0.15567121, + 0.3053812, + 0.061536286, + 0.45275414, + 0.52026993, + -0.27435046, + -0.5718859, + 0.4229256, + -0.07084866, + -0.030026317, + -0.36797613, + 0.1122264, + -0.26307356, + -0.10515985, + 0.26979277, + -0.14706655, + -0.33508027, + -0.34815684, + -0.22645114, + -0.49091917, + -0.38154513, + 0.3639837, + -0.6122211, + -0.3048436, + -0.24391583, + -0.3895307, + -0.36050758, + -0.0962911, + -0.03136313, + -0.45664772, + 0.38104597, + 0.9460543, + 0.14456847, + 0.6778669, + 0.32279837, + -0.4436569, + 0.05272206, + -0.38535833, + -0.34588924, + -0.2904867, + -0.2772234, + -0.87668824, + 0.11407234, + 0.0198417, + 0.8916821, + 0.24330945, + 0.29072648, + 0.15307361, + 0.2062233, + 0.11192992, + 0.45900953, + -0.155014, + 0.06565483, + -0.23378563, + -0.022830501, + 0.38708347, + -0.26873228, + -0.25730258, + 0.11316378, + -0.4604946, + -0.2215575, + 0.13694397, + 0.08197186, + 0.36586845, + -0.028996773, + 0.18051717, + 0.17586699, + -0.41382223, + 0.2508657, + -0.30702642, + -0.4648323, + -0.19495253, + 0.123159885, + -0.14772266, + -0.29556483, + -0.041871198, + 0.1378702, + 0.09837083, + 0.06253725, + 0.7177657, + -0.48658413, + -0.23369767, + 0.2354919, + -0.026035756, + 0.3622049, + 0.48521173, + 0.35048184, + -0.52645826, + -0.4439323, + 0.3806598, + 0.15666665, + -0.11622001, + 0.29278165, + 0.37806502, + 0.035442308, + 0.19264522, + 0.43181688, + 0.14496572, + 0.76961523, + 0.090536185, + -0.101270154, + -0.40184098, + -0.16885807, + 0.33664152, + 0.08898454, + 0.038801543, + -0.59514266, + -0.6362529, + 0.49646634, + 0.32957858, + -0.2718823, + 0.37542862, + 0.011395182, + -0.2974469, + 0.014852148, + 0.05607478, + 0.10929003, + -0.11432752, + -0.876907, + 0.1592305, + 0.69625735, + 0.043638654, + -0.17394237, + 0.059968024, + 0.32240793, + -0.047884714, + -0.20440532, + 0.12123285, + 0.64207363, + -0.06869782, + 0.72979045, + 0.29619628, + 0.15942426, + 0.5040492, + 0.581812, + 0.07661596, + -0.016697299, + -0.13293299, + -0.5640195, + 0.26753142, + -0.39310464, + 0.6581654, + 0.095744535, + -0.10117728, + 0.29387343, + 0.26654446, + 0.110354185, + -0.23955593, + -0.15913647, + -0.4193846, + -0.08628654, + 0.8529431, + -0.43195474, + 0.08387873, + -0.208806, + -0.041998703, + 0.18912126, + -0.432355, + 0.18521535, + 0.70500445, + 0.340972, + 0.16211247, + 0.48353451, + -0.087219365, + 0.24761929, + -0.60789067, + -0.038408555, + -0.21116513, + -0.32791704, + -0.026726462, + 0.17587714, + 0.28274095, + 0.2850052, + 0.43851233, + 0.32130143, + -0.30484486, + -0.055469, + -0.27294496, + 0.13276143, + -0.021105938, + -0.19310531, + 0.3066401, + -0.15792915, + 0.48119622, + -0.36528304, + 0.6264926, + -0.1438396, + -0.16154468, + 0.015671533, + -0.19105929, + -0.4125015, + 0.24613036, + -0.39126223, + 0.72922206, + 0.38456106, + 0.62204397, + -0.20637366, + -0.38563398, + -0.10032717, + -0.14298457, + 0.32253802, + 0.20113276, + 0.7401749, + -0.5676083, + 0.2110326, + 0.18967815, + -0.15491089, + -0.6085462, + 0.17248648, + -0.21303543, + 0.073526904, + 0.64009035, + -0.25802758, + 0.25763223, + 0.23493016, + -0.15475631, + 0.037105337, + 0.108165085, + 0.49268818, + -0.5189825, + 0.07913368, + -0.4079382, + -0.23391135, + 0.037048854, + -0.20974134, + 0.47924066, + 0.094929665, + -0.23066437, + -0.35099483, + -0.53016454, + -0.412993, + 0.09029362, + 0.62401044, + -0.22009638, + -0.5276195, + 0.18111923, + -0.3743839, + -0.07593414, + -0.08641575, + 0.055489447, + -0.22558668, + 0.40833318, + -0.34415168, + -0.069987774, + 0.035186708, + -0.4325619, + -0.25760287, + -0.55115765, + -0.045084666, + -0.07199043, + -0.097315975, + -0.2804834, + -0.05913653, + 0.07555573, + -0.17714939, + 0.06892068, + 0.1066713, + -0.22870386, + 0.23601429, + 0.051809587, + 0.06374412, + 0.26616177, + -0.39634538, + -0.094775155, + -0.017267257, + -0.40489888, + -0.0007169396, + 0.1551452, + 0.06273943, + -0.10574545, + -0.0603436, + -0.09682876, + 0.1814125, + 0.33648837, + 0.15987818, + -0.31163657, + -0.36416763, + -0.63220096, + -0.79556865, + -0.2973321, + -0.123603426, + 0.6712883, + -0.5098917, + -0.25634712, + 0.37733248, + -0.15558279, + 0.11248955, + 0.021146823, + -0.103081696, + 0.6409461, + 0.16087292, + -0.37029922, + -0.40938216, + -0.0019384865, + -0.15710075, + 0.48344004, + 0.3273008, + -0.3451752, + -0.39136612, + -0.32477927, + -0.44262397, + 0.26897448, + 0.06427331, + -0.1460348, + 0.39051893, + -0.18446368, + 0.1659826, + -0.20127128, + -0.15676631, + 0.01807353, + -0.47902608, + 0.20159993, + 0.43535152, + 0.040248275, + 0.667825, + 0.26098603, + 0.12348478, + 0.015419008, + -0.09814551, + -0.09458242, + -0.059831534, + -0.031137764, + -0.072932646, + 0.14662859, + -0.22312818, + -0.4620953, + 0.2641797, + 0.39962587, + -0.17054492, + -0.20925215, + -0.13143113, + 0.044346415, + 0.60195786, + 0.0859361, + 0.13751808, + 0.35820714, + -0.33576325, + -0.30866498, + 0.27948305, + -0.0879558, + 0.19033894, + 0.045771107, + 0.29310498, + -0.027852304, + -0.1387852, + 0.44800496, + 0.09448314, + 0.19863531, + -0.3857126, + -0.12853393, + -0.030014964, + 0.61765695, + 0.42165846, + -0.62757117, + -0.37945288, + 0.6332541, + -0.464457, + -0.5361437, + 0.83499134, + 0.19881387, + -0.67729807, + -0.42446598, + -0.58397615, + -0.63222253, + -0.101353936, + -0.4741449, + -0.036133796, + 0.043779474, + 0.21366848, + -0.11196974, + -0.13459426, + -0.2021784, + 0.35046178, + -0.66610587, + 0.24167335, + 0.5297449, + -0.032162804, + -0.36616313, + -0.048948735, + -0.14576703, + 0.021878198, + 0.32275957, + 0.3759007, + 0.085267544, + 0.3435522, + 0.0226029, + 0.50576204, + -0.5416529, + 0.3329186, + -0.04709679, + 0.14495775, + 0.35686415, + -0.07772631, + -0.47206488, + 0.115788914, + -0.18432747, + -0.37547487, + -0.4514291, + -0.1813632, + -0.3239724, + -0.1417988, + 0.013881765, + 0.049018946, + -0.19953737, + -0.17679965, + -0.012268078, + 0.02886875, + 0.13546494, + -0.39463645, + -0.39966086, + 0.11478209, + 0.42962077, + -0.37181956, + -0.8302474, + -0.10372332, + 0.06350693, + -0.30584562, + 0.23068543, + 0.37382856, + -0.3456079, + -0.32688951, + -0.08858538, + 0.4070978, + 0.46008956, + 0.6758132, + 0.24465998, + -0.40935487, + 0.22364432, + -0.7686984, + 0.0008602478, + -0.14089099, + -0.4738329, + 0.8239867, + 0.108914554, + 0.06373408, + 0.2087746, + -0.46599206, + -0.26990235, + -0.12681249, + -0.3558678, + 0.24894361, + 0.075637706, + 0.31908542, + 0.10796381, + -0.06272471, + -0.21588288, + -0.010266364, + -0.25708652, + -0.22406733, + 0.2904529, + 0.018928722, + 0.14384589, + 0.42431313, + 0.506095, + 0.40140998, + 0.008040674, + -0.6993208, + -0.5624181, + -0.19976181, + -0.031089053, + -0.4744235, + 0.47310293, + -0.046421744, + 0.19140154, + -0.17241013, + 0.5352506, + -0.14448403, + 0.3940098, + -0.06916042, + 0.4996309, + -0.3126294, + 0.16966173, + 0.43984804, + -0.18812901, + -0.08509977, + -0.112525955, + -0.40217116, + -0.42965603, + -0.11719439, + -0.13274771, + 0.6052349, + -0.7040949, + 0.18117198, + 0.008695886, + -0.6484499, + 0.07742027, + 0.010862865, + 0.0063298345, + 0.040362574, + 0.37499115, + -0.3138166, + 0.17703916, + -0.34696263, + -0.015527494, + -0.09432372, + 0.22715187, + 0.21799369, + -0.35087454, + 0.3345401, + -0.15899345, + -0.52826846, + 0.46416888, + 0.36001977, + -0.56908166, + 0.17644536, + -0.07616757, + -0.29044563, + 0.5238607, + 0.31771886, + -0.07184307, + -0.24200456, + -0.16190931, + 0.008243799, + 0.023209296, + 0.06534143, + -0.41226047, + 0.112298295, + -0.3015791, + -0.5647689, + -0.04952158, + -0.00445503, + 0.16611058, + -0.23187056, + -0.44529772, + 0.29885244, + 0.31303346, + -0.13814785, + -0.1932252, + -0.012695096, + -0.15963979, + -0.12772162, + -0.047912568, + -0.28576612, + 0.4680935, + 0.3402425, + -0.108937636, + 0.8961656, + -0.3041432, + -0.12323314, + -0.016468868, + -0.19155559, + 0.09138339, + -0.05337052, + 0.1106626, + -0.016372368, + -0.36485037, + 0.17217425, + -0.29221687, + 0.39180073, + -0.21099079, + -0.0023429021, + 0.21915114, + 0.6374825, + -0.3332619, + 0.053048454, + -0.3141463, + -0.3617488, + 0.071757555, + -0.07790172, + 0.3100374, + -0.31573573, + -0.58393866, + 0.51212573, + 0.3571202, + 0.06581415, + 0.32387367, + -0.101696275, + 0.7823158, + -0.09569957, + 0.6328414, + 0.16383699, + 0.24601734, + -0.5235795, + 0.3037342, + 0.08023377, + -0.298779, + 0.17945886, + 0.1675681, + 0.076659165, + -0.020239571, + -0.6810321, + -0.06979373, + 0.14966048, + 0.7473624, + -0.4045639, + 0.25004083, + -0.06125778, + -0.17939858, + -0.06522793, + 0.23669598, + -0.18314189, + -0.03256868, + -0.069894694, + 0.16219781, + -0.29723406, + 0.44915992, + 0.47120082, + 0.35745588, + 0.36508352, + -0.6298312, + -0.0038676448, + -0.000684265, + 0.0768022, + -0.13687824, + 0.65207183, + 0.18375845, + 0.14368202, + -0.061746687, + -0.09830982, + 0.06257132, + 0.6280069, + -0.34335703, + 0.37760842, + 0.3159033, + 0.13959254, + 0.39266062, + -0.08280173, + -0.14325562, + 0.20307642, + 0.25995505, + 0.26635066, + -0.1264677, + -0.08744081, + 0.23189142, + -0.06639249, + -0.012150578, + 0.15435706, + 0.39075422, + -0.38875258, + 0.13185693, + 0.12422066, + 0.095832065, + 0.033905335, + -0.07125055, + -0.12763172, + 0.14759089, + -0.24925143, + 0.42952144, + 0.44857544, + -0.44048527, + -0.27902123, + 0.27675, + 0.4195206, + 0.5265678, + 0.29162216, + 0.29116675, + -0.71511525, + -0.21162498, + 0.696861, + -0.15296543, + 0.110065766, + -0.002412146, + -0.09934472, + 0.09578111, + 0.2346858, + 0.9101971, + 0.48778546, + -0.71838707, + 0.08633807, + 0.10951728, + 0.35759056, + -0.3917056, + 0.29888383, + 0.24649747, + -0.27665076, + -0.2941874, + -0.10381008, + 0.006866522, + 0.37984443, + -0.20687683, + -0.17171974, + -0.3413689, + 0.062334947, + 0.23428057, + 0.22714692, + -0.11409806, + 0.010326289, + 0.27350253, + 0.70198333, + -0.34454703, + -0.21612805, + 0.46419516, + 0.09470786, + 0.32727247, + -0.100289404, + 0.40277886, + 0.14520058, + -0.22886594, + -0.4284003, + -0.030329103, + -0.21271726, + 0.91875297, + -0.22989021, + -0.26487443, + -0.083734445, + 0.17760232, + -0.17166932, + -0.398322, + -0.048962414, + 0.65776414, + 0.1027699, + 0.18211134, + 0.17629838, + -0.6043768, + 0.6302831, + -0.24834588, + -0.36605713, + -0.78877664, + 0.5127979, + 0.33305693, + -0.37917215, + 0.048247147, + 0.2061078, + -0.32533747, + 0.4034822, + -0.16670462, + -0.10830925, + 0.12508468, + -0.36289477, + 0.44944593, + -0.2842212, + -0.36477113, + -0.0005038884, + -0.008594878, + 0.43406487, + 0.019698672, + 0.3151072, + 0.20353642, + 0.37260592, + -0.18694735, + -0.39751375, + -0.33342054, + -0.043205958, + 0.31236318, + 0.32274875, + 0.20942324 + ], + "2025-05-19T19:17:31.359246", + "2025-05-19T19:17:31.359246", + 80.9870300293, + -88.608291626, + -25.0651397705, + "2", + "ID: 15497727
Cluster: 2
Chunk: Fallbeispiel\n26" + ], + [ + 11681, + "A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner Martin\nVorname, Nachname: ________________________________________________________\nBearbeitungszeit ::: 90 Minuten\nErlaubte Hilfsmittel ::: Eigener Taschenrechner\nDisclaimer :::\nL\u00f6sungsweg muss klar ersichtlich sein, unbelegte Resultate k\u00f6nnen nicht ber\u00fccksichtigt werden.\n\no\nKeine Kommunikation unter den Studierenden oder mit Dritten.\n\no\nW\u00e4hrend der Pr\u00fcfung sind Smartphones und Smartwatches auszuschalten.\n\no\nWiederholungsrecht f\u00fcr die Pr\u00fcfung ist bei Betrug verwirkt.\n\no\nL\u00f6sungen m\u00fcssen schriftlich abgegeben werden.\n\no\nHinweise f\u00fcr die Studierenden :::\nPr\u00fcfungsbl\u00e4tter nur einseitig beschriften.\n\no\nLesen Sie zuerst alle Aufgaben sorgf\u00e4ltig durch, bevor Sie zu l\u00f6sen beginnen.\n\nBearbeiten Sie alle\no\nFragestellungen.\n\nDie Aufgaben sind nicht nach Schwierigkeitsgrad geordnet.\n\no\nFachhochschule Graub\u00fcndenAUFGABE 1: (10 Punkte)\n(a) Eine verkettete Liste mit 4 Elementen A[1\u20264] sei mit den jeweiligen Zeigern im Speicher wie folgt abgelegt\nmit A[1] \uf0e0 2001.\n\nErg\u00e4nzen Sie die fehlenden Eintr\u00e4ge so wie in der Vorlesung und den \u00dcbungen. (\n\n4P)\n(b) Zeichnen Sie den Graphen mit der Adjazenzliste: (2P)\nFachhochschule Graub\u00fcnden(c ) Ein bin\u00e4rer Baum ist mit Zeigern im Speicher abgelegt.\n\nTragen Sie die fehlenden Zeiger in die Tabelle ein (wie in\nder Vorlesung und den \u00dcbungen): (4P)\nFachhochschule Graub\u00fcndenAUFGABE 2: (8 Punkte)\n(a) Wir suchen das Feld in der Skipliste mit dem Wert 2.\n\nWelche Werte der Skipliste werden gepr\u00fcft? (\n\n2P)\n(b) Zeichnen Sie einen bin\u00e4ren Suchbaum der Tiefe 3. (\n\n2P)\nFachhochschule Graub\u00fcnden(c) F\u00fcgen Sie nacheinander die folgenden Elemente in einen bin\u00e4ren Suchbaum ein:\nMarlen, Adrian, Peter, Urs, Mike, Bernd, Carl, Karsten, Sabine, Susanne, Christine, Kirsten, Alexander. (\n\n4P)\nFachhochschule Graub\u00fcndenAUFGABE 3: (8 Punkte)\n(a) F\u00fcgen Sie in dem bin\u00e4ren Suchbaum das Element mit dem Schl\u00fcssel-Wert 11 ein.\n\nWie sieht der\nSuchbaum danach aus? (\n\n2P)\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\nWie sieht danach der Suchbaum aus? (", + 18240, + 16174711, + null, + "md", + null, + [ + -0.30515555, + -0.14859733, + -0.2907506, + -0.9129415, + 0.1334666, + 0.35424015, + 0.19413741, + 0.061239563, + -0.12346785, + -0.28735802, + 0.3367314, + 0.25140816, + 0.17027909, + -0.14460994, + 0.23843019, + -0.13566323, + 0.37057465, + -0.16810408, + -0.22692493, + -0.04520729, + -0.30817518, + 0.82013404, + -0.27978626, + -0.55596495, + 0.450278, + 0.2624361, + -0.5647471, + -0.21176696, + 0.0015793238, + 0.6738452, + -0.36007595, + -0.6481569, + -0.16622557, + -0.05394174, + 0.17143127, + -0.2848207, + 0.45293003, + 0.20632371, + 0.2551156, + 0.2597976, + -0.06598796, + 0.27511194, + -0.39344078, + -0.7374856, + -0.09233965, + 0.23792689, + 0.09954536, + 1.2445338, + 0.024646893, + 0.22494763, + 0.048621483, + 0.4329353, + -0.4409988, + -0.08099344, + -0.37433723, + -0.13059193, + -0.16031404, + -0.2840599, + -0.7470587, + -0.05618491, + 0.03266052, + -0.15373008, + 1.1586397, + -0.19353671, + -0.23090734, + -0.10786878, + 0.03016441, + -0.19961849, + 0.9300144, + -0.37786642, + 0.74176204, + -0.01666043, + -0.6710729, + -0.28802338, + 0.056510285, + -0.16190915, + 0.2120038, + -0.017909005, + -0.7946408, + 1.0274469, + -0.2990196, + 0.5437434, + 0.47989866, + 0.086471684, + -0.36924022, + -0.26142856, + -0.053407654, + 0.5034002, + -0.085252374, + 0.44102576, + -0.048045043, + -0.08855205, + -0.4612468, + 0.6919998, + -0.48854536, + -0.15525071, + -0.19412427, + -0.29970333, + 0.6284504, + 0.14907825, + -0.7797276, + 0.9818813, + 0.6869283, + 0.06316834, + -0.41114044, + -0.16765456, + 0.062882006, + 0.23331957, + -0.34290302, + -0.39330554, + -0.36645693, + 0.2778853, + -0.14589651, + 0.7341792, + -0.43014118, + 0.09676452, + -0.7998611, + 0.8426324, + 0.16843122, + -0.6222976, + 0.27563375, + -0.39530858, + 0.327616, + -0.28386012, + 0.46443373, + -0.25841266, + 0.8985802, + 0.24036434, + -0.1371811, + -0.173087, + 0.042655084, + 0.53516394, + 0.14924099, + -0.18016131, + -0.049184646, + -0.4044009, + -0.42211488, + -0.4375518, + -0.06414524, + -0.25074887, + 0.23781544, + -1.0173606, + -0.06774359, + -0.7243294, + 0.71213824, + 0.14270625, + 0.3649372, + -0.23115358, + -0.436748, + 0.31907964, + 0.67910147, + 0.5286133, + 0.65115845, + -0.051956587, + 0.5821675, + 0.4482054, + -0.4505784, + -0.019533586, + -0.017179854, + -0.031237707, + -0.01932006, + 0.27662265, + -0.55173653, + -0.8267486, + -0.44777498, + 0.05661215, + -0.41320193, + 0.08677849, + -0.15704724, + -0.49167413, + -0.10330658, + -0.6850906, + 0.22465493, + -0.107214436, + -0.88666993, + 0.3273317, + 0.010182396, + 1.2605767, + -0.65244806, + 0.41014603, + 0.035778027, + 0.51228243, + -0.82852745, + 0.44214615, + -0.16086142, + -0.13236143, + 0.6592305, + 0.11018216, + 0.097205535, + -0.09968153, + 0.51393217, + -0.30260217, + 0.16281864, + 0.046413798, + 0.5165966, + -0.03630536, + -0.14047581, + -0.5465833, + 0.1618812, + -0.46164995, + 0.25813964, + -0.385388, + -0.64817506, + -1.0548141, + -0.05287013, + -0.29432148, + 0.2500341, + 0.18900497, + 0.9383664, + -0.20885831, + 0.31603724, + 0.23351529, + -0.27929574, + 0.39391497, + 0.35117394, + -0.26059914, + 0.58039486, + -0.109280236, + -0.9323228, + 0.16530116, + 0.07734762, + -0.61003643, + -0.036286164, + -0.18970047, + 0.41734785, + -0.008525293, + -0.14288521, + -0.49945635, + 0.9454537, + 0.10047979, + 0.4719326, + 0.34077406, + -0.312416, + -0.096835665, + -0.3463452, + 0.0055888155, + -0.49824238, + 0.46546438, + -0.040646266, + 0.041466553, + -0.66947925, + -0.22239675, + 0.40822726, + 0.13631563, + 0.18755145, + -0.2790493, + -0.5025383, + 0.57094187, + 0.0041786805, + 0.08375247, + 0.362982, + -0.13841888, + -0.21661617, + -0.12944639, + -0.07455134, + 0.4329432, + 0.6960533, + 0.11317302, + -0.47606328, + -0.34480238, + -0.11743902, + 0.06561324, + -0.24902883, + -0.263526, + -0.16591564, + 0.10634727, + -0.36515898, + 0.59453, + 0.26682156, + -0.44071135, + -0.33577332, + -0.54799795, + -0.81322294, + 0.31515417, + 0.3367385, + -1.0220196, + -0.18496904, + 0.32803234, + 0.07072943, + -0.11288872, + -0.08773932, + -0.08173081, + -0.0041821897, + -0.5499432, + 0.057852607, + -0.16397308, + -0.3392973, + -0.047899965, + -0.1831305, + -0.36757338, + 0.5082931, + 1.0092833, + -0.069505915, + -0.5373528, + -0.08853425, + 0.06312153, + 0.14365284, + 0.0018650293, + -0.32686663, + 0.5759413, + -0.0232716, + 0.52276087, + -0.15583178, + 0.021918599, + -0.032124113, + -0.33574587, + 0.7108636, + -0.14888681, + -0.27793297, + -0.025597699, + 0.13535154, + -0.42310512, + 0.92717415, + -0.15764259, + 0.015786305, + -0.19864425, + -0.33900538, + -0.01910176, + 1.2565368, + 0.09994322, + 0.17841277, + 0.25369722, + -0.38435364, + -0.4331228, + 0.096422784, + -0.63850373, + 0.040119693, + 0.2985774, + -0.7379221, + 0.8233832, + -0.5172792, + 0.09460115, + -0.082642764, + -0.34699833, + 0.5488008, + -0.7037103, + -0.06985402, + 0.16636534, + 0.07100085, + 0.25124714, + 0.55461556, + -0.6025093, + 0.1544475, + 1.4296623, + 0.38280192, + 0.56109416, + -0.1569759, + -1.0526493, + -0.1956172, + -0.065698095, + -0.2053572, + 0.3562391, + 0.10989542, + -0.8900804, + 0.34709498, + 0.27340043, + 0.4415491, + 0.08358292, + 0.25424692, + -0.13379778, + -0.35426974, + -0.30256286, + 0.032668114, + 0.5082203, + 0.02812887, + -0.3071652, + 0.063991785, + 0.17218249, + -0.47402617, + -0.057911016, + -0.5032744, + -0.19577391, + 0.25594643, + 0.78161234, + -0.57277024, + 0.4957783, + -0.62124777, + -0.056555763, + -0.45000297, + -0.041015446, + -0.63336474, + -0.58979213, + -0.13169385, + 0.5046419, + -0.08906469, + 0.1292684, + 2.1553268, + 0.23702106, + -0.26012436, + 0.5266542, + -0.92762697, + 0.081121325, + 0.3112158, + 0.49196786, + -0.21114066, + 0.1712138, + 0.6059452, + 0.5689461, + 0.21232854, + 0.40005803, + -0.21869272, + 0.3044842, + 0.6036727, + 0.15486586, + -0.031072348, + -0.027419945, + -0.3103751, + 0.11346748, + 0.21840164, + 0.38779572, + 0.19044499, + 0.78140193, + 0.4721806, + -0.3588211, + 0.4446696, + 0.22362576, + 0.17724463, + 0.27984062, + 0.2655363, + -0.30295593, + 0.503076, + 0.9708333, + -0.5498646, + -0.06719675, + -0.047975294, + 0.09692265, + -0.19791022, + -1.664608, + -0.051339425, + -0.395117, + 0.4672518, + 0.6007831, + 0.048470482, + -0.06670498, + 0.32272848, + -0.5478183, + -0.45952094, + 0.1785539, + -0.435481, + -0.11700179, + 0.2542149, + 0.28302372, + -0.21971281, + -0.56057495, + -0.067988865, + 0.07209492, + -0.43796754, + 0.69364095, + -0.03419109, + -0.32897967, + 0.24406835, + 1.4633555, + 0.13702899, + -0.40490162, + -0.18128628, + -0.2714742, + -0.261569, + 0.2188533, + -0.112986594, + -0.10458878, + 0.30360997, + 0.75920385, + 0.9779809, + 0.046856314, + 0.12117962, + 0.33058378, + -0.06816444, + -0.18087262, + 0.22588527, + -0.28575802, + 0.09854579, + 0.11998903, + -0.3189659, + -0.40638635, + 0.5108794, + -0.4048246, + -0.038192097, + 0.023255859, + 0.07157618, + 0.020302482, + -0.37528142, + 0.38772783, + -0.22072491, + 0.120173365, + -0.22445327, + -0.6060664, + -0.037919827, + -0.5414063, + 0.14185154, + 0.5692578, + 0.07673928, + 0.030849218, + -0.037728503, + 0.25018346, + 0.26364225, + -0.7442907, + 0.80370903, + 0.19561073, + -1.1233368, + 0.42366606, + 0.00436417, + -0.2125794, + 0.28397232, + -0.50090516, + 0.018174589, + -0.24060324, + -0.33919415, + 0.5744813, + -0.35763526, + 0.27832687, + 0.09550676, + -0.39867443, + 0.18787715, + 0.38680753, + -0.39256176, + 0.47368515, + 0.2651555, + 0.50024325, + 0.47845644, + -0.57202333, + 0.01502268, + -0.27855864, + -0.3904301, + 0.20800115, + -0.05547456, + -0.35504693, + 0.47465664, + 0.051423047, + 0.22423112, + -0.51701504, + -0.54719806, + -0.80372745, + 0.30420026, + 0.47508997, + -0.13135009, + 0.27519798, + -0.30103204, + -0.29405135, + 0.033511516, + 0.30766115, + -0.25215417, + 0.77452886, + -0.44458574, + 0.44902748, + -0.93894863, + -0.13324946, + 0.09367509, + -0.26967332, + -0.4578543, + 0.44675896, + -0.5685128, + 0.8342213, + -0.51742995, + -0.2668445, + 0.10530737, + 0.29412097, + -0.18913192, + -0.06956157, + 0.18227157, + -0.30085665, + 0.10278027, + -0.19309902, + 0.1366126, + -0.39647478, + -0.18081383, + -0.65096205, + -0.41518062, + -0.62682647, + -0.4953742, + 0.33683395, + -0.47781068, + -0.09274109, + 0.2796102, + -0.07197381, + 0.24611248, + 0.36837003, + 0.7446424, + -0.31939965, + -0.11256243, + 0.10923369, + -1.0412554, + 0.11077647, + 0.21309392, + -0.0085755065, + 0.1267107, + 0.17260385, + 0.12483156, + -0.012027834, + 0.26472706, + 0.051404744, + 0.3625214, + 0.012938342, + -0.47123852, + 1.0303146, + 0.02618438, + 0.6103415, + -0.2843116, + -0.32966346, + -0.46627378, + 0.02437026, + 0.037758417, + 0.34482664, + -0.36490628, + -0.8226116, + -0.0724474, + -0.4866066, + 0.11817148, + 0.051363036, + -0.16919295, + 0.03030324, + -0.568912, + -0.01975871, + -0.21577048, + -0.1331334, + 0.2165487, + 0.3403986, + -0.09312197, + 0.076334424, + 0.10681524, + -0.46769077, + -0.25540632, + 0.15901384, + -0.16125324, + 0.28578055, + 0.62163144, + 0.18960841, + 0.8107261, + -0.5143774, + 0.81812763, + 0.7650651, + 0.42127204, + 0.6575445, + 0.47998342, + 0.2743843, + 0.43253538, + 0.6544301, + 0.12695383, + -0.45832294, + -0.06709314, + 0.6167051, + -0.36743504, + -0.68379736, + 0.09057343, + 0.6899544, + -0.21988228, + -0.3557532, + 0.55238897, + 0.17044346, + -0.2554361, + 0.19934371, + 0.05479428, + -0.2739699, + -0.65206546, + -0.27680278, + 0.040897496, + -0.09710335, + -0.21113653, + 0.31413305, + 0.09613145, + -0.44100994, + -0.0982642, + -0.7267852, + 0.02138652, + 0.45496988, + 0.4696022, + -0.45626327, + 0.5311036, + 0.19610634, + -0.1790887, + 0.6289532, + -0.66666067, + 0.098029405, + 0.25798798, + 0.18566276, + 0.18067898, + 0.48063278, + -0.29033637, + 0.42005774, + -0.23575892, + -0.14300624, + 0.28512597, + -0.17169578, + -0.22664559, + -0.096466675, + 0.08293639, + 0.114223026, + 0.040937997, + -0.13944839, + 0.028058827, + 0.18075873, + 0.38029775, + -0.06534709, + -0.19674239, + -0.49668238, + 0.0021864846, + 0.15187876, + -0.2532757, + -0.07121429, + -0.19239923, + 0.4615894, + -0.73012424, + -0.21275237, + -1.8788924, + 0.13694426, + -0.13457885, + 0.19289565, + 0.50626856, + -0.8688476, + -0.16576374, + 0.10830864, + 0.68418396, + -0.13803656, + -0.16290934, + -0.048436668, + 0.19109847, + 0.20475352, + -0.6698638, + 0.043499008, + 0.20145816, + -0.4793836, + -0.016052734, + -0.08992885, + -0.33487275, + -0.7077406, + -0.29077178, + 0.049007088, + -0.07620807, + 0.066431485, + 0.048599184, + 0.017111782, + 0.0066378564, + 0.51924515, + -0.32098293, + -0.16257234, + -0.23909533, + -0.13302764, + 0.93945223, + 0.20202827, + 0.59287477, + 0.55180526, + -0.047503226, + 0.3906824, + -0.40674317, + -0.41356272, + -0.070334405, + -0.37313867, + -0.060034264, + 0.29684395, + -0.0134943435, + 0.014348581, + 0.1759775, + 0.1857416, + -0.13593936, + 0.8016995, + -0.6079686, + 0.282869, + 0.4070179, + 0.06317889, + 0.44061947, + 0.12674621, + -0.67702305, + -0.38011664, + 0.19209237, + -0.66350895, + -0.018571535, + -0.969312, + -0.0936658, + -0.5442368, + 0.41938856, + -0.2256737, + -0.14592291, + 0.14769721, + -0.12424295, + -0.016226757, + -0.02576118, + 0.8757368, + 0.4232831, + -0.6099684, + -0.103083536, + 0.123489946, + 0.2627551, + 0.24460365, + 0.010998733, + 0.5341248, + -0.5947963, + 0.1303033, + 0.012045994, + -0.10746814, + 0.11897041, + 0.44514278, + 0.28130507, + -0.32058364, + -0.35568324, + 0.13455322, + -0.3535945, + 0.40487087, + 0.08551611, + 0.4098884, + -0.060237605, + -0.69820213, + -0.48031527, + 0.0376921, + -0.660782, + -0.4235474, + 0.01945296, + -0.3610309, + -0.076196775, + 0.47501814, + 0.3063506, + -1.1699272, + 0.19746575, + 0.018123813, + 0.03325878, + -0.11707055, + -0.39922118, + 0.16296631, + -0.21583724, + 0.16677319, + -0.43725622, + 0.25584084, + 0.38572446, + -0.056735516, + -0.10477203, + 0.22752695, + -0.06975598, + 0.5049642, + 0.7961814, + 0.5127146, + 0.018459179, + -0.31533337, + 0.3865741, + -0.70081115, + -0.12138138, + 0.1377339, + 0.1365265, + 0.119443975, + 0.44541004, + 0.41672847, + -0.3705336, + 0.3039223, + -0.20031579, + 0.2222531, + -0.25085396, + -0.17673162, + 0.49711108, + 0.36748782, + 0.5205139, + -0.3771765, + 0.22138497, + -0.1128993, + 0.5939029, + -0.077726915, + -0.33103096, + -0.4247012, + -0.521761, + -0.13164029, + -0.34121335, + -0.4830091, + 0.11629037, + -0.017107125, + 0.12440865, + -0.568151, + -0.13417628, + -0.61406404, + -0.4599327, + -0.47817522, + -0.3716455, + -0.49276406, + 0.3967509, + -0.21309586, + -0.0001974851, + -0.609071, + 1.172331, + -0.97265756, + -0.5552374, + -0.5196522, + 0.15514098, + 0.14102757, + 0.19890344, + -0.10629617, + 0.18239617, + -0.05537613, + 0.1844385, + 0.29076904, + -0.14133336, + -0.5148703, + -0.626047, + -0.5758826, + 0.34436134, + 0.1258479, + 0.2628954, + -0.28017876, + 0.042504143, + 0.31540406, + -0.12604287, + -0.014457114, + -0.4388585, + -0.14278457, + 0.19271013, + -0.62230456, + 0.2818122, + 0.035942875, + -0.31973797, + -0.9011406, + 0.5107101, + 0.57160425, + 0.13415103, + 0.2306971, + -0.124909416, + 0.15016478, + -0.19610998, + 0.5283348, + -0.13264793, + -0.78082734, + 0.33378494, + 0.12520061, + 0.8308328, + -0.19103163, + -0.14072247, + 0.05196784, + 0.07961905, + 0.5534813, + -0.14322229, + -0.5950957, + -0.1267252, + 0.3737189, + 0.4108296, + -0.3880235, + 0.51617235, + -0.30123287, + 0.5536268, + 0.5271828, + -0.010657262, + 0.6911642, + 0.19422467, + -0.017281413, + 0.37934303, + -0.100561745, + -0.8233313, + 0.34915647, + 0.4901526, + -0.4109829, + 0.5529898, + 0.4889676, + -0.1472669, + -0.16998374, + 0.16276987, + -0.30843985, + -0.1143288, + -0.5181367, + 1.1649908, + 0.68992865, + -0.7083719, + -0.10262042, + -0.31914032, + 0.43713453, + -0.12107596, + -0.53911775, + -0.049951047, + 0.8191159, + -0.26705822, + -0.48776352, + 0.51252335, + -0.5490968, + -0.16523175, + -0.23624249, + -0.011048265, + 0.19475807, + -0.8368096, + 0.5561679, + 0.17112166, + -0.20051135, + 0.33573347, + 0.0073874146, + -0.11300807, + 0.22448577, + -0.03947734, + -0.102940656, + 0.4418231, + -0.6030626, + 0.07880368, + 0.8267931, + -0.84075856, + 0.09035016, + -0.55735904, + -0.2289741, + -0.05208374, + 0.6016315, + 0.46777946, + 0.06573491, + -0.24746338, + 0.5695858, + 0.31712368, + -0.2541853, + 0.22891352, + 0.059899885, + -0.100197986, + 0.15260759, + 0.2790533, + -0.39130867, + -0.5167227, + -0.22645025, + 0.37713656, + 0.3884998, + -0.064931415, + -0.0489881, + -0.0912404, + 0.07069782, + -0.18667099, + -0.21917915, + 0.19175644, + 0.06901742, + 0.3407635, + -0.003134653, + 1.2749856, + -0.050991546, + 0.3513377, + -0.2521053, + 0.6453947, + -0.3655633, + -0.41025954, + 0.4061091, + 0.40235943, + 0.5396743 + ], + "2025-05-19T19:17:50.145508", + "2025-05-19T19:17:50.145508", + 89.4516601562, + 7.6296286583, + 70.2842178345, + "2", + "ID: 16174711
Cluster: 2
Chunk: A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner ..." + ], + [ + 11682, + ")\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\nFachhochschule Graub\u00fcndenAUFGABE 4: (6 Punkte)\nF\u00fchren Sie Shellsort mit den Schrittweiten 7, 3, 1 aus: (6P)\n1 2 3 4 5 6 7 8 9 10 11 12 13 14\n15 30 17 10 11 4 6 9 2 1 7 32 5 3\nDokumentieren Sie die Schritte so wie in der Vorlesung und den \u00dcbungen.\n\nFachhochschule Graub\u00fcndenAUFGABE 5: (10 Punkte)\n(a) Ordnen Sie die Folge in einem Max-Heap und speichern diesen in einem Feld A=[\u2026.]\n\nab.\n\nDokumentieren Sie\ndie Zwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n4P)\n9\n4 5\n7 10 6 8\n(b) Nehmen Sie das Ergebnis von (a) und f\u00fchren drei Basis-Schritte von Heapsort durch.\n\nDokumentieren Sie die\nZwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n6P)\nFachhochschule Graub\u00fcndenFachhochschule Graub\u00fcndenAUFGABE 6: (6 Punkte)\n(a) Bestimmen Sie die Balancefaktoren des bin\u00e4ren Suchbaums.\n\nHandelt es sich um ein AVL-Baum? (\n\n2P)\n(b) L\u00f6schen Sie aus dem AVL-Baum das Element \u00ab17\u00bb.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\n(c) F\u00fcgen Sie danach das Element \u00ab15\u00bb hinzu.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\nFachhochschule Graub\u00fcnden", + 18240, + 13400826, + null, + "md", + null, + [ + -0.018229347, + -0.38892946, + 0.31161425, + -0.998932, + -0.04421944, + 0.012323308, + 0.056399006, + 0.34804738, + 0.35307953, + -0.35841677, + 0.3690997, + 0.15030643, + 0.11480969, + 0.61793154, + 0.32586882, + 0.2682585, + -0.044980027, + -0.11192055, + -0.41985622, + 0.1185541, + -0.46477506, + 0.2617688, + 0.1582423, + 0.40720466, + 0.52699876, + -0.09980139, + -0.1658657, + -0.33146667, + -0.48378333, + 0.4715847, + -0.2603933, + 0.22985356, + -0.35564688, + -0.2665626, + -0.37282786, + -0.3708576, + 0.27705535, + -0.17555547, + -0.1007064, + 0.8787912, + -0.6361571, + 0.8462863, + -0.41491386, + -1.0743575, + -0.119222954, + 0.21616627, + 0.351656, + -0.1425808, + -0.14000267, + -0.03204943, + -0.3830869, + 0.43982428, + -0.07756342, + -0.12913339, + 0.27947193, + -0.61557776, + 0.37603986, + 0.15845044, + -0.054483056, + -0.4951737, + 0.21252012, + 0.36411726, + -0.0046239756, + 0.21580538, + 0.59083176, + -0.6260606, + 0.24970117, + -0.20502728, + -0.3359949, + 0.16517954, + 0.2724517, + 0.059889525, + -0.42903987, + 0.16454907, + -0.15162434, + -0.26855993, + 0.6151786, + -0.18166679, + -0.5859667, + 0.8314198, + 0.4218077, + -0.0015567616, + 0.049931765, + 0.42144158, + 0.023435399, + -0.24164206, + 0.17575556, + 0.7778537, + -0.16712096, + -0.4808951, + 0.6233034, + 0.31061238, + -0.22306338, + -0.034370556, + -0.55864716, + -0.2600461, + -0.49306524, + -0.05329446, + 0.39308465, + 0.6799174, + -0.65429705, + 1.0149189, + 0.60166526, + 0.07968297, + 0.5361366, + -0.5028575, + -0.3678366, + 1.2766347, + -0.8330879, + -0.27658212, + 0.603146, + -0.34365514, + 0.11803521, + 0.66272044, + 0.03782097, + -0.15429789, + -0.39171734, + 0.52450746, + 0.87300414, + -0.50774133, + -0.14718792, + -0.4770277, + 0.5875298, + -0.33968338, + -0.057348274, + -0.34422478, + 0.61758184, + 0.0010380298, + 0.25055075, + -0.17092654, + -0.45831773, + -0.014332555, + 0.20707978, + -0.5424851, + -0.58927, + -0.40313384, + 0.291591, + 0.15818128, + -0.18096143, + -1.1520605, + 0.14482614, + -0.33832714, + -0.34577534, + -0.4189722, + 0.54026145, + -0.29661858, + -0.013932389, + 0.3942689, + -0.59777224, + -0.25342214, + 0.13924825, + 0.71153593, + 0.8341156, + 0.41663066, + 1.8186315, + 0.5404852, + -0.3953351, + -0.27634558, + -0.15979046, + 0.15899405, + 0.18873337, + 0.7713568, + -0.9970588, + -0.9028517, + -0.12983763, + 0.33623406, + -0.33942837, + -0.14162262, + 0.07100285, + -0.4347438, + 0.022010744, + -0.100848645, + 0.084925756, + -0.6840328, + -0.26973814, + 0.31043303, + -0.091202885, + -0.4218042, + -0.23496455, + 0.09538148, + 1.0878911, + 0.48636362, + -0.5418434, + -0.24636929, + -0.013851576, + 0.0721021, + 0.29699033, + 0.007336747, + -0.29217142, + 0.0568149, + 0.441849, + -0.41095084, + -0.106402114, + 0.09873009, + -0.21215427, + 0.47781408, + -0.36138004, + 0.005564302, + -0.41996172, + -0.6707829, + 0.94199574, + -0.64256895, + -0.42259702, + -0.375621, + -0.2737278, + 0.23330274, + 0.5756949, + -0.19174035, + 1.1457402, + -0.53672636, + 0.30635548, + 0.3384524, + 0.80478215, + 0.9900275, + 0.04303173, + -0.71226245, + 0.7321291, + 1.3905417, + -1.3358728, + -0.80769503, + 0.16552304, + -0.5667762, + -0.75118524, + -0.4930314, + 0.25538325, + -1.0443759, + -0.18207371, + 0.3469569, + 0.5496786, + 0.21378389, + -0.06737299, + -0.10585939, + -0.050389178, + -0.09389816, + -0.7647808, + 0.19850203, + -0.23627529, + 0.39635578, + -0.34711558, + -0.34446058, + 0.36801925, + -0.41110456, + 0.2166468, + 0.5072785, + 0.7598471, + 0.13406558, + 0.16882932, + 0.39486572, + -0.0680946, + 0.2502569, + 0.7689801, + -0.7969756, + -0.009615103, + -0.15787393, + 0.3503063, + 0.44763875, + 0.2925564, + -0.079661, + -0.20652108, + -0.5655483, + 0.12386164, + 0.35362646, + 0.5001809, + 0.1687677, + -0.24397776, + 0.36151022, + -0.43289745, + 0.3514371, + -0.42866826, + -0.25388494, + -0.4553959, + 0.31875932, + -0.08147031, + 0.07435901, + 0.48942688, + -0.63692045, + -0.17238647, + -0.2586591, + 0.3846915, + -0.43818194, + 0.05904032, + 0.0035344511, + -0.05161597, + -0.27255395, + 0.34643832, + -0.6748918, + -0.1249262, + -0.5344309, + -0.015655324, + 0.07066979, + 0.45409656, + 0.09392263, + 0.3818069, + -0.10677363, + -0.24060169, + 0.43263775, + -0.49030846, + -0.04223478, + 0.12008931, + -0.17562367, + 0.25338557, + -0.16204259, + 0.15212646, + -0.33447888, + -0.35443416, + -0.001737617, + 0.33329016, + -0.07222566, + -0.15994394, + 0.67969114, + -0.26071313, + -0.32118583, + 0.21294415, + -0.38277954, + 0.15502846, + -0.22226845, + 0.20619917, + 0.13999632, + 0.24121243, + 0.18948224, + 0.035116397, + 0.68141454, + -0.21251358, + -0.2239954, + -0.5722777, + -0.353563, + 0.14526376, + -0.034825005, + -0.30235094, + -0.062367946, + 0.27419096, + -0.16130567, + 0.13423148, + -0.1603713, + 0.0642059, + -0.39987704, + -0.33286893, + 0.41524208, + -0.019982241, + -0.2105211, + -0.0058602653, + 0.05448863, + -0.13675047, + 0.9658878, + -0.3123094, + -0.16285345, + 0.276977, + -0.4323043, + 0.24670798, + 0.11427021, + -0.6502541, + -0.18631539, + -0.023932062, + -0.040818814, + 0.043948643, + -0.27182996, + 0.1819926, + 0.08743136, + 0.36973, + 0.20381969, + -0.041775517, + -0.4341808, + -0.13765702, + -0.18682778, + -0.5030552, + -0.03318193, + -0.089993306, + 0.46894568, + -0.30822432, + 0.018473584, + 0.20325498, + -0.29532567, + 0.119396575, + 0.44659585, + -0.18583336, + 0.24080503, + -0.28012937, + 0.30213684, + -0.5244217, + -0.20940064, + -0.28498858, + 0.08786593, + 0.2541144, + 0.045374736, + -0.059167355, + 0.21902563, + 0.34954053, + -0.48981482, + -0.3553667, + 0.13103248, + -0.31352955, + 0.40137473, + 0.3390946, + 0.47903043, + -0.029377524, + 0.004885504, + 0.0062687173, + 0.89428204, + 0.13411681, + -0.19532733, + -0.27581623, + -0.059906866, + -0.042758252, + 0.06649107, + 0.3376034, + -0.107037246, + -0.3275565, + 0.08542758, + -0.072785504, + 0.30401182, + -0.24870998, + 0.15606639, + 0.20558405, + -0.43860784, + 0.18208586, + 0.08504175, + 0.524622, + 0.53525436, + -0.115856566, + 0.6688049, + -0.046068996, + 0.23320353, + -0.09978776, + 0.47988975, + 0.27435145, + -0.0035621598, + -0.67128056, + 0.17947665, + -0.2735452, + -0.1351381, + 0.45114335, + 0.1415885, + 0.051984277, + 0.1278179, + 0.19339925, + -0.3583363, + 0.38548353, + -0.4179701, + -0.025019638, + 0.2872048, + 0.6347997, + 0.25344118, + -0.23386009, + -0.3437534, + 0.50749433, + -0.21190818, + -0.04043909, + -0.11562124, + -0.1844245, + 0.36392206, + -0.38555613, + -0.0841493, + -0.011907487, + 0.25210756, + -0.27303907, + -0.67684287, + 0.07739195, + -0.14256062, + 0.09494643, + -0.37412065, + 0.07879837, + 0.02760696, + 0.74798006, + -0.1921193, + 0.03745932, + -0.25477254, + -0.10415161, + -0.18509343, + -0.0069691287, + -0.039108697, + 0.19168107, + 0.7282998, + 0.028168857, + 0.07410474, + -0.019786596, + -0.22739558, + -0.28408796, + -0.2569203, + 0.019245874, + 0.5297329, + -0.1272976, + 0.6565297, + 0.4344055, + 0.16363716, + -0.43685853, + 0.11439312, + -0.11398915, + -0.12823598, + -0.07585599, + 0.46079487, + 0.16451138, + -0.48338264, + -0.20386282, + 0.33779445, + -0.14579774, + -0.25565612, + 0.16507417, + 0.1870849, + -0.16147012, + 0.45945483, + 0.06192082, + 0.07872937, + 0.8355732, + -0.60722905, + 0.027040295, + -0.26177773, + -0.15440087, + 0.19818307, + -0.10661499, + 0.1503135, + -0.18273343, + 0.09991827, + -0.044943303, + 0.09000377, + -0.37091625, + 0.45061427, + -0.007877663, + 0.20330086, + -0.044130635, + -0.2723735, + -0.0751419, + -0.478388, + -0.16905817, + 0.22130693, + -0.086562924, + -0.066582784, + -0.064444855, + -0.51260114, + 0.17492774, + 0.14611411, + -0.53830856, + -0.43540722, + 0.27119192, + 0.08023027, + -0.120942935, + -0.39865977, + 0.11607893, + 0.11479404, + 0.06996767, + 0.4214141, + -0.07742136, + -0.23684804, + -0.5008473, + 0.606261, + -0.6358237, + -0.38973525, + -0.17402242, + -0.0055573657, + -0.42926174, + -0.0012840331, + -0.4609781, + 0.3518194, + -0.3486486, + 0.05429156, + -0.11537174, + 0.041738637, + -0.009058211, + 0.14988147, + 0.29864255, + 0.15790433, + 0.32948518, + 0.24843192, + 0.1815826, + -0.05169136, + -0.55581814, + -0.6451794, + -0.36288118, + -0.17284256, + 0.046965428, + 0.121676356, + -0.08904963, + -0.041933037, + -0.04235173, + -0.14947546, + 0.47157097, + 0.5569694, + 0.2884232, + 0.30457747, + -0.10511264, + -0.19000491, + -0.5133766, + -0.112978354, + 0.78154165, + 0.50641227, + 0.4522264, + -0.5294063, + -0.12479051, + -0.28724095, + -0.17710923, + 0.07329555, + 0.19793797, + 0.032984685, + -0.33899304, + -0.038813353, + 0.07340428, + -0.13955446, + -0.085322246, + -0.503956, + -0.08425811, + -0.36768347, + 0.2573258, + 0.6481876, + -0.15966395, + -0.046988346, + 0.6221118, + -0.20062491, + 0.67258936, + 0.42340744, + 0.08976433, + 0.11112916, + -0.3671008, + -0.14531773, + -0.14288002, + 0.07632336, + 0.004283201, + -0.08826988, + -0.025962383, + 0.012545101, + -0.31878218, + -0.24617323, + 0.096753076, + 0.30672807, + -0.21176839, + 0.2829942, + -0.029912943, + 0.39350352, + 0.4040698, + 0.15272102, + 0.8812311, + -0.5271896, + 0.47252285, + 0.7781497, + 0.20350254, + -0.022002522, + 0.1221665, + 0.07317624, + -0.64002466, + -0.3055098, + 0.009426033, + 0.42207348, + -0.06335666, + -0.4448423, + 0.0037898829, + 0.013348915, + -0.17157775, + 0.2775989, + 0.25295314, + 0.22898032, + -0.3894848, + 0.18502195, + -0.041814707, + -0.3550853, + -0.043235227, + -0.45665523, + 0.06509272, + -0.23987833, + -0.28020525, + -0.13324238, + -0.028157458, + -0.7596569, + -0.42363608, + -0.07097531, + 0.14894561, + 0.04741678, + 0.30851614, + -0.50894046, + 0.5390944, + -0.22990933, + 0.13007292, + 0.3517871, + -0.45477283, + -0.4510594, + -0.073965944, + -0.22014761, + 0.18206757, + 0.19716668, + 0.34684664, + 0.37089723, + -0.055021096, + 0.54446614, + -0.2247338, + -0.533343, + 0.108561866, + 0.30025923, + -0.29784966, + -0.2573285, + 0.11022765, + -0.101726174, + -0.38798442, + 0.5760529, + -0.08983798, + 0.011150442, + -0.36853144, + -0.026944622, + 0.17506209, + 0.27766454, + -0.6795184, + 0.21785249, + -0.41907167, + 0.28276035, + -1.0258608, + -0.41148737, + -0.13436005, + 0.08078878, + -0.4335461, + 0.5755294, + 0.16989003, + -0.008498371, + -0.14319532, + -0.6014378, + 0.6671432, + 0.066613324, + -0.7454445, + 0.44027686, + -0.38283327, + -0.035588376, + -0.28626272, + -0.20548731, + 0.2865669, + -0.18520164, + -0.19502959, + 0.07265054, + -0.28762037, + -0.19950248, + -0.07282463, + -0.31952727, + -0.3213535, + -0.16874969, + 0.46122915, + -0.14917761, + 0.162947, + -0.009246826, + 0.53336763, + -0.8705404, + 0.09888415, + -0.40653735, + 0.38938388, + 0.027511239, + -0.25161484, + -0.17021312, + 0.38291126, + 0.32822832, + 0.07997799, + 0.07524532, + -0.10827035, + -0.2827577, + -0.2646949, + 0.27239037, + 0.1315653, + 0.1374738, + -0.23992547, + -0.25597024, + -0.015296372, + 0.28959054, + -0.07862954, + 0.076603934, + 0.009404285, + -0.117970854, + -0.18131335, + -0.14829876, + -0.32168055, + 0.03422135, + -0.01776174, + -0.41120923, + 0.06933791, + -0.8406516, + 0.086706206, + -0.10212784, + 0.40903714, + -0.35444257, + -0.11590188, + 0.2722869, + -0.43193713, + -0.4222078, + -0.021239787, + 0.36516953, + 0.14544973, + 0.20796755, + -0.62568617, + 0.45604226, + -0.15401757, + -0.046251427, + 0.24469548, + 0.2688783, + 0.41817942, + -0.014270052, + 0.26363447, + -0.56646806, + -0.34615153, + -0.034759, + 0.41862416, + -0.46545768, + 0.08229132, + -0.13270155, + -0.5677002, + 0.63111234, + 0.2596541, + 0.12283601, + -0.14381596, + -0.5200045, + 0.16247751, + 0.10708432, + -0.026053613, + -0.46887738, + 0.3410792, + -0.36315095, + -0.37799135, + 0.48338407, + -0.09344123, + -0.18602778, + 0.2459087, + -0.23041093, + -0.07316458, + 0.6333394, + -0.21460806, + 0.16264418, + -0.3101555, + -0.615785, + 0.07898238, + -0.48269194, + -0.5539573, + 0.3714304, + -0.17001584, + -0.1920317, + -0.21740521, + 0.18438064, + 0.55829275, + -0.11160733, + -0.1441912, + 0.23416482, + 0.2088845, + 0.36075255, + -0.2636078, + 0.2345444, + 0.10606591, + 0.06909073, + 0.39305392, + 0.13861075, + 0.37287855, + 0.39561936, + -0.059736114, + 0.028581059, + 0.056182273, + -0.40329337, + 0.55491626, + -0.07037347, + 0.40794763, + 0.4534529, + 0.23343173, + -0.13170469, + 0.7594545, + 0.63004977, + -0.34974957, + -0.21886761, + -0.42451602, + 0.2951904, + -0.18564767, + 0.1912238, + 0.10706264, + -0.08987443, + 0.30751154, + -0.67614603, + -0.5998329, + -0.13880143, + -0.0068685487, + -0.44311613, + -0.07512867, + 0.24813911, + 0.04873722, + -0.15885213, + -0.23684226, + 0.2475726, + 0.09944974, + -0.030137006, + 0.34758648, + 0.07211429, + -0.4041363, + 0.09193742, + 0.23618798, + 0.11474047, + -0.21159291, + 0.5940229, + 0.0063367435, + 0.5461079, + 0.08338907, + -0.40724817, + 0.6022566, + -0.43364877, + -0.2473479, + -0.02587109, + 0.3781109, + -0.36189076, + 0.396095, + 0.31727356, + -0.12325859, + -0.04715323, + 0.0019984841, + -0.16817033, + -0.15687348, + -0.34329516, + -0.11947553, + 0.11585216, + -0.15938908, + 0.31871808, + 0.38262844, + -0.10130851, + 0.15439433, + 0.37670603, + -0.17302158, + -0.11083955, + -0.29263696, + 0.46612966, + 0.32472345, + -0.13475867, + -0.3512682, + 0.04604502, + -0.11593554, + 0.26702392, + -0.13062313, + 0.05754915, + 0.33464542, + 0.23133893, + 0.031399533, + 0.15590928, + -0.24748865, + -0.19892445, + 0.43300802, + -0.12593162, + -0.24474227, + -0.21371934, + 0.09796097, + 0.30257678, + 0.26922616, + 0.20498958, + -0.67369646, + 0.17638557, + 0.4599571, + 1.0533913, + -0.53544515, + 0.25076717, + 0.56635267, + -0.12809256, + 0.40096483, + 0.79718053, + 0.54696405, + -0.14584106, + -0.053031515, + 0.25434327, + -0.066534, + -0.25895834, + 0.64243287, + 0.8302413, + -0.4680212, + -0.14579968, + -0.18870805, + -0.2210941, + 0.30907232, + -0.049101323, + 0.27654153, + -0.41045102, + -0.16563392, + -0.5355203, + -0.29183426, + -0.10685755, + -0.15846011, + 0.26668125, + 0.027506568, + 0.6006899, + -0.007644766, + 0.075106, + 0.29561883, + -0.27969143, + 0.09134356, + 0.70824856, + 0.2531883, + -0.17030288, + 0.035528224, + -0.20337613, + -0.41391578, + 0.269198, + -0.5355944, + 0.1501446, + -0.6192578, + 0.10445654, + -0.043698445, + -0.5165609, + 0.13628751, + 0.09448125, + 0.5168838, + -0.11068532, + -0.04298596, + 0.39610946, + 0.449314, + -0.2734397, + -0.45600155, + 0.13727772, + -0.33093995, + 0.066970214, + -0.42359304, + 0.1823718, + 0.14154774, + 0.14137585, + 0.37864006, + 0.20897156, + -0.9816803, + -0.069341645, + -0.3710667, + 0.48590592, + 0.3089084, + -0.50681055, + 0.2535409, + -0.007899631, + 0.41618562, + 0.043761127, + 0.4979268, + 0.056253623, + 0.38821036, + -0.05175347, + 0.03183897, + 0.4026068, + -0.33801413, + -0.26499084, + 0.1655985, + 0.94635916 + ], + "2025-05-19T19:18:02.313746", + "2025-05-19T19:18:02.313746", + -48.5946006775, + 24.0425033569, + -75.3658218384, + "2", + "ID: 13400826
Cluster: 2
Chunk: )\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie..." + ], + [ + 11683, + "prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.\n\nx2 + y2 \u2013 1 = 0,\nx \u2013 sin(t) = 0,\ny \u2013 sin(2t + \u03c0\/4) = 0\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-Algorithmus.\n\nz.B. nur f\u00fcr x>0, da symmetrisch:\n(x ,y , t ) = [0.7, 0.75, arcsin(0.7) ]\n0 0 0\n[0.25, 1, arcsin(0.25) ]\n[1, -0.25, arcsin(1) ]\n[0.7, -0.75, arcsin(0.7) ]\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3 Design-\nVariablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit den Startwerten\nvon (b)\nHier reicht es alle Schnittpunkte mit x > 0 zu bestimmen, da beide Kurven achsensymmetrisch sind.\n\nStartwert [0.7, 0.75, arcsin(0.7) ] \uf0e0 L\u00f6sung [0.70674446 0.7078306 0.78488616]\nStartwert [0.25, 1, arcsin(0.25) ] \uf0e0 L\u00f6sung [0.26014633 0.96664301 0.2631811 ]\nStartwert [1, -0.25, arcsin(1) ] \uf0e0 L\u00f6sung [1, -0.25, arcsin(1) ]\nStartwert [0.6, -0.85, np.arcsin(0.6)] \uf0e0 L\u00f6sung [0.70732644 0.70666723 0.78570889], hier musste\nder Startwert noch variiert\/probiert werden, bis die Konvergenz auf den gesuchten Schnittpunkt erreicht\nwurde.\n\n51\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung.\n\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems.\n\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus.\n\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\nL\u00f6sung (-0.5; 0.25)\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .", + 18240, + 8452030, + null, + "md", + null, + [ + 0.3179646, + -0.103203535, + -0.03015862, + -0.33203667, + 0.21279645, + 0.25659063, + 0.264594, + 0.5064091, + -0.5108686, + 0.1827112, + -0.2057376, + 0.41959545, + 0.16683517, + 0.05212103, + 0.4227515, + 0.40559927, + 0.49333963, + -0.033038758, + 0.5204243, + -0.29663774, + -0.56361336, + 0.06465066, + 0.3913966, + 0.48964748, + -0.6096554, + 0.39608756, + -0.13872966, + 0.1466504, + 0.10674975, + 1.1831636, + -0.17645934, + -0.07092726, + -0.3881887, + -0.3163711, + -0.27526757, + -0.6076026, + 0.8258395, + 0.20650324, + -0.659403, + -0.299567, + -0.42918032, + 1.034678, + 0.58659273, + -0.05486596, + -0.8073823, + 0.42847615, + 0.059895966, + -0.8434884, + -0.012350749, + -0.9390505, + -0.5265102, + 0.49774885, + 0.21056643, + 0.4486518, + 1.0570403, + -0.31846648, + -1.1891799, + 0.20063733, + 0.29752445, + -0.23782356, + -0.029075136, + 0.1304894, + 0.029878959, + 0.28391412, + 0.36735412, + -0.4083468, + 0.98556453, + 0.11212183, + 1.3803494, + -0.33012542, + -1.0097363, + 1.0618006, + 0.74522233, + -0.47806334, + -0.35564494, + 0.8881023, + 0.5328013, + 0.16532242, + 0.09286481, + 0.38159826, + 0.22184847, + -0.42269397, + -0.65226895, + -0.57150114, + -0.14183772, + -0.29612067, + 0.21912804, + 0.99256325, + -0.68894416, + -0.3783333, + -0.67143995, + 0.241732, + 0.0910079, + -0.003905559, + -0.062509365, + -0.9355172, + 0.246611, + -0.7060341, + 0.17382374, + 0.40318158, + -0.3884492, + 0.8578195, + 0.48120752, + -0.33331436, + -0.3087037, + -0.30196667, + -0.09375683, + 0.700844, + -0.34690237, + 0.20593575, + 0.7350019, + -0.2744343, + -0.63781977, + -0.2781452, + -0.33611503, + -0.8714574, + -0.26948762, + 0.5923756, + -0.022124298, + 0.64965963, + -0.65460634, + 0.5799716, + 0.30378082, + 0.09496207, + 0.2005457, + 0.2637317, + 0.4786765, + 0.34106645, + 0.7779038, + -0.28749013, + 0.4967352, + -0.12119448, + -0.45425233, + -0.2763047, + 0.13343339, + 0.21064195, + -0.16060331, + -0.04723143, + -0.37736693, + -0.41682112, + 0.0013151169, + -1.0787084, + -0.15283218, + -0.77552617, + 1.1649085, + 0.26213062, + -0.10206656, + -0.3481243, + 0.022040572, + -0.0014186613, + -0.5297382, + 0.04701516, + 0.26367578, + 0.20073523, + -0.26572463, + 0.25030568, + 0.09952585, + 0.24828044, + 0.26485074, + -0.39937988, + 0.5686809, + 0.12064321, + 0.16056605, + -0.46170872, + 0.8905975, + -0.26644367, + -1.090288, + 0.35777533, + 0.47124922, + -0.5568535, + 0.068260625, + -0.42058724, + -0.45270944, + 0.47526357, + -0.47125173, + 0.3821553, + 0.17854322, + 0.10391203, + -0.3122939, + -0.33499587, + 0.6497647, + 0.12115388, + -0.36106363, + -0.81619304, + 0.5968232, + -0.06543198, + 0.7112051, + -0.11774708, + 0.23259439, + 0.31871048, + 0.14806409, + 0.20857567, + 0.6626608, + -0.27898014, + 0.19106042, + 0.29249823, + -0.38687858, + -0.022606177, + -0.27145344, + -0.013560202, + 0.18952073, + 0.12144117, + -0.044424, + -0.3487328, + -0.15383571, + -0.2964693, + -0.32467073, + 0.23808849, + -0.42140925, + 0.25050563, + 0.55444705, + -0.4339773, + -0.45882767, + 0.47328132, + 0.17985092, + 0.5771203, + 0.039823387, + -0.78794384, + -0.47582692, + 1.0969408, + 0.3912246, + -0.3394388, + 0.35843316, + -0.12538925, + 0.40949932, + 0.36337683, + 0.1231149, + 0.49759576, + -0.03165455, + -0.23518555, + -0.7567927, + -0.0017741285, + -0.2637051, + -0.6172975, + -0.37138402, + -0.23855875, + -0.124398276, + 0.5134386, + 0.020063302, + -0.28884807, + 1.3712112, + -0.04976902, + -0.33117688, + 0.02930113, + 1.3072406, + 0.022287423, + -1.1908557, + 0.38531473, + -0.23009203, + 0.15636864, + 0.23339988, + -0.23249346, + -0.6087692, + 0.21010998, + 1.297247, + -0.16497652, + 0.012391259, + 0.009655807, + 0.13246092, + 0.36038598, + -0.25973785, + -0.35484746, + -0.38913283, + -0.0062422156, + -0.8542563, + 0.29494977, + 0.112311654, + 0.48722833, + 0.4665359, + -0.3835098, + 0.51445, + -0.028277062, + -0.36348417, + 0.61028486, + -0.24931172, + 0.57688046, + -0.23655275, + 0.7076859, + 0.56621677, + -0.7501217, + 0.23353426, + -0.3419531, + 0.15671787, + -0.32813695, + -0.102636784, + 0.71063894, + -1.0974811, + 0.08048005, + 0.5556505, + -0.5370333, + -0.12106757, + -0.5666193, + 1.4743439, + -0.081616305, + -0.6485317, + 0.116181806, + -0.7739463, + 0.07550931, + -0.6740064, + -0.5236249, + 0.41579852, + -0.3183279, + -0.43345645, + 0.11420259, + -0.32249475, + -0.050178535, + -0.09199941, + -0.26114702, + -1.365145, + -0.005558504, + -0.6385124, + -0.578983, + 1.0255724, + -0.2156635, + 0.19190365, + -0.2769707, + 0.3146405, + -1.0503782, + -0.19056909, + 0.35829684, + 0.8140154, + -0.2086799, + -0.18071207, + 0.26598462, + -0.064783245, + 0.19276954, + 0.2718251, + -0.33522215, + -0.09172768, + 0.52675635, + -0.8098238, + -0.54116803, + 0.25861534, + 0.60239285, + -0.4315255, + 0.24963489, + -0.6406656, + 0.7292226, + -0.6255161, + 0.4357397, + -0.43209037, + -0.039514437, + 0.35857353, + 0.7896368, + -0.6932665, + -1.0898719, + 0.5042019, + -0.52351695, + 0.73398495, + -0.058132306, + 0.8052545, + 0.16831118, + -0.8797989, + 0.015593909, + 0.2055605, + 0.11255176, + 0.53884244, + -0.024151467, + 0.07915458, + 0.1477757, + 0.035457566, + -0.5403893, + 0.071278855, + -0.05883587, + -0.55295, + 0.008974977, + -0.11543683, + 1.3483471, + -0.7058789, + -0.03482712, + 0.03875401, + 0.04321973, + 0.053749062, + -1.1251963, + -0.119662166, + -0.85628474, + -0.31397253, + -0.68580264, + 0.11569043, + 0.61530775, + -0.6324934, + -0.5979457, + -0.16618313, + -0.10302602, + -0.60011697, + -0.65335536, + 2.2805245, + -0.26942825, + 0.8736844, + 0.064001344, + -0.48391694, + -0.02215404, + -0.28375655, + 0.47275215, + -1.3100657, + 0.09487824, + -0.1540473, + -0.1786088, + 0.7666711, + -0.07021061, + -0.2967147, + 0.4737062, + 0.17666961, + 0.39956897, + -0.24559094, + 0.682262, + -0.05535302, + -0.025606006, + 0.12066747, + 0.5311623, + 0.5673748, + 0.3572922, + -0.067543544, + -0.43317324, + 0.39779204, + -0.6376087, + 0.43887135, + -0.06466002, + -0.06297163, + 0.66705, + 0.04713373, + 0.93229157, + -0.22434928, + -0.5482013, + 0.20611274, + -0.118103564, + 0.49557516, + -0.18139958, + 0.35113364, + 0.11865379, + 0.51240504, + -0.6445605, + 0.4402714, + 0.16231334, + -0.21681719, + -0.24679574, + 0.0065548196, + -0.036066525, + -0.6303757, + -1.5498528, + 0.27970043, + -0.78256774, + -0.35555935, + -1.3005219, + 0.06166306, + -0.2916041, + 0.50801545, + 1.0744617, + 0.41488403, + 0.78117543, + -0.32775888, + 0.25744647, + -0.20832494, + 0.38385865, + -1.0360343, + 0.7856589, + -0.33935744, + -0.30955422, + 0.6104281, + 0.76684904, + 0.18497123, + 0.44177458, + 0.21676141, + -0.23577617, + -0.38612807, + -0.53648335, + -0.28673565, + -0.12533933, + -0.5718161, + -0.49745345, + 0.09307541, + 0.19101778, + 0.122034654, + -0.35468525, + 0.3468625, + -0.017231677, + 0.56455064, + 0.18270478, + 0.36557847, + 1.226125, + -0.43200317, + -0.3123635, + 0.5351712, + 0.17957105, + -0.099606976, + 0.7499286, + 0.82020366, + -0.0795578, + -0.226941, + 0.3567391, + -0.2259046, + -0.42008, + 0.04781284, + 0.52774453, + 0.88093764, + -0.06506628, + -0.8113955, + -0.12883946, + 0.8819187, + 0.89745456, + 0.06228158, + -0.78600454, + 0.12822285, + -0.09880047, + -0.12746984, + -0.5315075, + -0.231522, + -0.23135549, + -0.62991774, + 0.48748082, + 1.0023079, + 0.073702514, + 0.040346183, + 0.5862807, + 0.52398586, + 0.4861188, + 0.1721721, + -0.04072024, + 0.3549862, + -0.40317348, + -0.02951917, + 0.97357225, + -0.13453482, + 0.1689667, + 0.7754584, + -0.091631755, + -0.15747294, + -0.29863954, + 0.36682436, + 0.0066728294, + -0.47077885, + -0.2882183, + 0.08037635, + -0.72415924, + -0.30380076, + 0.310589, + -0.5356941, + 0.95568657, + -0.8017017, + -0.5559288, + 0.24698572, + 0.022249997, + 0.25928813, + -0.39828953, + -0.32568616, + -0.54128194, + 0.6852619, + 0.1445916, + -0.07527183, + -0.16780429, + -0.547034, + 0.59706795, + 0.6186024, + -0.07692017, + -0.0287631, + -0.32358855, + -0.08211478, + -0.083204895, + -0.17263949, + 0.15117969, + 0.608192, + -0.33741945, + 0.41032308, + -0.48596123, + 1.3126942, + -0.14117824, + -0.9462994, + -0.2534827, + 0.13726845, + -0.10096637, + -0.15770826, + 0.67544943, + -0.23844174, + 0.04910421, + -0.072647795, + -0.887709, + -0.33016372, + -0.031903103, + 0.19518289, + -0.10144632, + -0.62824845, + -0.11209639, + -0.02745635, + -0.31324166, + 0.2655987, + -0.086929776, + 0.24200217, + -0.97304773, + -0.04357164, + -0.3584577, + -0.11586818, + -0.28164983, + -1.1840141, + 0.21540655, + 0.17574319, + -0.34534484, + 0.1617531, + -0.5598222, + -0.2452085, + 0.16140741, + -0.41080138, + -0.32222012, + 0.03200359, + -0.49135184, + -0.5684677, + -0.90185505, + 0.26967022, + 0.56196576, + -0.11209853, + 0.2327277, + -0.18117191, + 0.2940191, + 0.5164878, + -0.17242557, + 0.10977529, + 0.060887974, + -0.078232095, + 0.7060599, + 0.48885465, + -1.3068123, + -0.35796496, + 0.20827678, + 0.14612392, + -0.35563132, + 1.1871852, + 0.27742037, + 0.17754018, + 0.2745219, + 0.65047604, + 0.13528365, + 0.0002168119, + -0.60352176, + -0.3901071, + -0.4815438, + 0.1892628, + -0.6246624, + -0.60937595, + -0.99289024, + 0.26781243, + 0.29689363, + 0.50128645, + 0.19925076, + 0.37187165, + 0.6156616, + -1.2260058, + 0.8190786, + 0.42233503, + 0.1264164, + -0.6630816, + 0.3427414, + -0.09521525, + 0.54052335, + -0.97958773, + -0.55477154, + 0.016809987, + 0.67670417, + 0.33431083, + 0.25518507, + 0.50097656, + -0.77782774, + -0.41374004, + -0.64041847, + -0.77154076, + 0.4074075, + 0.24232146, + 1.2260362, + 0.44215244, + -0.68388116, + 0.9677403, + -0.2669065, + -0.38606408, + 0.115285695, + 0.5568783, + -0.9808247, + 0.31515467, + 0.49426687, + 0.5402848, + 0.21924418, + 0.15334263, + -0.052357484, + 0.15337157, + -0.3278485, + -0.25846437, + -0.37101465, + -0.65097785, + 0.16944954, + -0.0015488118, + -0.45637187, + -0.97677743, + 0.31963325, + -0.31221384, + 0.23197512, + -0.69087017, + -0.59224117, + 0.6918758, + 0.3179198, + 0.055387188, + 0.7890175, + -1.1856422, + 0.7043253, + -0.19009817, + 0.54552674, + -0.18779051, + 0.90710205, + -0.50056267, + -0.8349579, + 0.20583802, + 0.2870361, + 0.2519976, + -0.66589755, + 0.124282375, + 0.35435632, + -0.47000822, + 0.13229026, + 0.26460597, + -0.100792654, + -0.39932036, + -0.09810575, + -0.22627285, + -0.35654783, + -0.19350061, + -0.1452652, + 0.12595765, + -0.5947708, + 0.03101572, + -0.523203, + 0.66362655, + 0.117537834, + 0.57657015, + -0.41302377, + -0.3932747, + 0.65216523, + 0.144657, + 0.31449473, + -0.12557416, + -0.78503686, + 0.30687666, + 0.30233848, + -0.47847667, + 0.29186136, + 0.543644, + -0.3495535, + 0.8736577, + -0.41167545, + -0.2259165, + -0.19873704, + 0.5585314, + -0.010376312, + 0.35106608, + 1.2410442, + -0.019262962, + -0.38912743, + 0.24180833, + 0.2461057, + 0.694913, + 0.04561298, + 0.46209463, + 0.10659326, + 0.23313323, + -0.49761343, + -0.7434121, + -0.12928715, + -0.7384819, + -0.8007435, + 0.29890174, + -0.90965974, + 0.11711198, + -0.02236507, + -0.476417, + -0.05973413, + -0.56339836, + -0.6529189, + -0.107363924, + 0.09931348, + 0.20704642, + 0.8873016, + -0.40292147, + -0.8594535, + 0.7187517, + -0.29139504, + 0.29953164, + 0.16235283, + -0.5468975, + 0.77724355, + -0.14892724, + -0.08074344, + 0.18070138, + 0.3522809, + 0.6412653, + -0.09592922, + -0.15358548, + -0.9975472, + -0.3090897, + 0.3767568, + 0.011570105, + 0.9239178, + -0.35992116, + -0.41825208, + -0.6147684, + -0.010710046, + 0.4541393, + -0.65657395, + -0.45886415, + -1.0839953, + -0.04637891, + -0.4446988, + 0.06691493, + -0.07193269, + 0.22899339, + 0.43784747, + -0.41034693, + 0.2598918, + -0.3318359, + -0.050114248, + 0.13831273, + 0.3970047, + 0.11372311, + -0.42512754, + -0.6346778, + -0.27388495, + 0.6020913, + -0.07446274, + -0.63867414, + 0.5722754, + -0.1798833, + -0.6319374, + 0.41297776, + 0.082904205, + 0.3042705, + -0.7483652, + 0.012291901, + 0.067568466, + 0.038615942, + -0.16468464, + 0.8277733, + -1.1031197, + 0.6517269, + 0.26826632, + -1.1953756, + -0.38717026, + -0.7489306, + 0.118099034, + 0.81632817, + 0.059993412, + 0.016315714, + 0.11144551, + -0.27993077, + -0.059355866, + -0.11051611, + -0.78951234, + -0.009395748, + 0.32249713, + 0.22671892, + -0.06860761, + -0.10996424, + 0.42432088, + -0.23529962, + 0.06109819, + 0.22412646, + 0.7106284, + 0.61305374, + 0.25996548, + 0.118355125, + -0.18939658, + 0.77194923, + -0.7481391, + -0.24462447, + 0.4912005, + -0.80482894, + -0.6711386, + -0.057118207, + 0.107364684, + 0.13967624, + -0.8033048, + 0.022480786, + -0.6756127, + -0.106953405, + 0.7683832, + 0.016400658, + -0.40793452, + 1.0159602, + 0.2284835, + -0.690624, + -0.6397171, + 0.45786136, + 0.14520982, + 0.13885698, + 0.20024082, + -0.09243501, + 0.9948861, + -0.45961666, + 0.06781551, + 0.58979774, + -0.304316, + -0.36438227, + 0.48808685, + -0.24383065, + -0.119916625, + 0.25262028, + -0.48482487, + -0.24130933, + 0.016952671, + 0.14700608, + -0.14967835, + 0.3475912, + 0.46034428, + -0.3626119, + 0.7132292, + 0.45547733, + 0.39658883, + 0.20629752, + 0.41274184, + 0.27197057, + 0.16509025, + 0.17670056, + 0.5178406, + -0.21935697, + 0.21842138, + -0.2710794, + 0.60031503, + 0.476497, + 0.27246734, + 0.35829365, + -0.8146932, + -0.49958944, + -0.5697277, + -0.5169735, + 0.26255387, + -0.46847337, + 0.5450765, + -0.36735708, + -0.4778977, + -0.31163576, + 0.21589628, + 0.116946444, + -0.10659495, + -0.17790103, + 0.06973756, + -0.90789807, + -0.18644339, + -0.010593556, + -0.012844044, + -0.28524238, + 0.27746853, + -0.45538363, + -0.056364805, + -0.22466937, + 0.34158593, + 0.3384039, + -0.5397978, + 0.27366617, + 0.4586963, + -0.35547325, + 0.57763946, + 0.1547179, + -0.86728007, + 0.27344233, + -0.5392305, + 0.12509203, + 0.13663076, + -0.46614972, + -0.3805331, + -0.15324268, + -0.38305783, + -0.15063962, + -0.059647035, + 0.2326165, + -0.10650018, + -0.0039651454, + 0.5398262, + 1.2550673, + 0.17140712, + 0.15471512, + 0.17832921, + -0.72719204, + -0.094155945, + 0.19315894, + -0.41575933, + -0.16952446, + -0.11600629, + -0.03419737, + -0.44515723, + -0.006330304, + 0.14522699, + 0.34305435, + -0.38617256, + -0.50974035, + 0.081011586, + -0.24193564, + -0.052198, + 0.28096294, + -0.35544664, + 0.14462799, + 0.05817336, + 0.5073191, + 0.21465582, + 1.0986232, + -0.025793368, + -1.052786, + 0.6898306, + 0.64347494, + -0.034119353, + 0.20878394, + -0.61910474, + 0.27643707, + -1.2383344, + 0.592768, + -0.5888715, + 0.5749514, + 0.59024644, + 0.2168188, + 0.06506534, + 0.73779243, + -0.290604, + 0.042115547, + 0.27325913, + 0.5592674, + 0.6684436, + 0.20334335, + 0.432467, + 0.22544955, + 0.7469736, + 0.031726286, + 0.35435492 + ], + "2025-05-19T19:18:17.032506", + "2025-05-19T19:18:17.032506", + -47.8755645752, + 122.5512313843, + -46.6768035889, + "7", + "ID: 8452030
Cluster: 7
Chunk: prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nic..." + ], + [ + 11684, + "von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.\n\nHesse-Matrix l\u00f6sen M. B\u00fcnner B3.02\n19 09.05.2025 13:30-15:00 Fr 4.4 Steepest Descent M. B\u00fcnner B3.02\n20 15.05.2025 13:30-15:00 Do 5.\n\nRestringierte Optimierung in 2D linear M. B\u00fcnner B3.02\n20 16.05.2025 13:30-15:00 Fr in 2D nichtlinear M. B\u00fcnner B3.02\n21 22.05.2025 13:30-15:00 Do Linear Programming M. B\u00fcnner B3.02\n21 23.05.2025 13:30-15:00 Fr Nonlinear Programming M. B\u00fcnner B3.02\n22 30.05.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\nM. B\u00fcnner B3.02\nHinweis:\n- Zwischen den Pr\u00e4senzterminen werden Coachings angeboten, die Termine dazu werden in der Pr\u00e4senzveranstaltung vereinbart.\n\nUnterschrift DozentLeistungsnachweis\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nProzent Art Form Hilfsmittel Bemerkungen Dauer (minuten)\n100%abgesetzte Modulschlusspr\u00fcfung schriftlich closed book eigener Taschenrechner nicht programmierbar 90\nFormelsammlung\nkeine\nUnterschrift Dozierende", + 18240, + 1108348, + null, + "md", + null, + [ + -0.5218154, + 0.13426243, + 0.46825144, + 0.22017159, + -0.27285972, + -0.035619803, + -0.3280491, + -0.19852506, + -0.15948859, + -0.4725128, + -0.87682056, + 0.38066867, + 0.68204814, + -0.77832884, + -0.29271296, + 0.8834769, + 0.22653359, + 0.1016869, + -0.29083347, + -0.7487563, + -0.9182125, + 0.06628891, + 0.4982129, + 0.79736966, + -0.7450637, + 0.021702912, + -0.49623805, + 0.32254717, + 0.39165622, + 0.6728145, + -0.20694828, + 0.38492647, + -0.13712877, + -0.6826968, + -0.7857164, + -0.29346603, + 0.3428663, + -0.048117593, + -0.95306414, + 0.53566486, + -0.20467556, + 0.63607115, + -0.1496102, + -0.9485281, + 0.45382833, + 0.44047022, + -0.6616231, + -0.49611348, + -0.0354804, + -0.4474402, + -0.39687717, + 0.32648695, + 0.17350808, + -0.7532869, + 0.769027, + -0.67411536, + 0.117820635, + 0.30585504, + 0.046293132, + 0.2492061, + 0.16829395, + -0.2062184, + -0.278263, + 0.0012786962, + 0.82924294, + -0.87960845, + 0.5231796, + -0.26407936, + 0.6066569, + 0.16336958, + 0.028656576, + 0.3724637, + 0.46770346, + -0.97330654, + -1.0355835, + -0.3733744, + 0.14204958, + -0.5127339, + 0.6391472, + -0.59550565, + -0.15315467, + 0.37998617, + -0.05196143, + 0.08567929, + -0.53681874, + -0.018131074, + 0.38652351, + 1.1281778, + -0.3159947, + -1.0691673, + 0.36076418, + 0.48334903, + -0.06896688, + 0.07090432, + -0.07764115, + -0.08227758, + 0.29714742, + -0.081590414, + 0.6832677, + 0.7774029, + -0.314649, + 0.8276121, + -0.3924025, + 0.4329938, + -0.63456583, + -0.3158543, + -0.6964059, + 0.7656432, + -0.29358765, + 0.044251714, + 0.5935919, + 0.08938551, + -0.36284658, + 0.7545475, + -0.2028428, + -0.4807071, + -0.6926457, + 0.20502637, + -0.12512188, + 0.11939093, + -0.011196971, + -0.40626916, + -0.16938147, + -0.75261956, + -0.030658351, + -0.39992115, + 1.0128741, + 0.5763147, + 0.027004955, + 0.113120094, + -0.19180319, + 0.39681336, + -0.099628955, + -0.085582584, + -0.39028254, + -0.43208677, + 0.031582244, + -0.14368996, + 0.54561144, + 0.20986195, + -0.8832573, + -0.8245904, + -0.25391674, + -0.12113949, + 0.47220448, + 0.28532746, + 0.113132775, + 0.29402786, + -0.41964287, + -0.24846517, + -0.53709227, + 0.41627502, + 0.007310286, + 1.4646508, + 0.23564908, + -0.7364678, + -0.71275187, + 0.43716463, + -0.15782805, + -0.3138234, + -0.5173079, + 0.008949224, + -0.45010677, + -0.13360988, + -0.3119706, + 0.95392275, + -0.16856728, + -0.33357173, + 0.5980733, + -0.7959715, + 0.38458765, + 0.70427257, + -0.0019510202, + -0.43840918, + -0.12841393, + 0.18648659, + 0.35626036, + 0.7374676, + 0.44698882, + -0.22703958, + 1.3622394, + 0.13820499, + -0.2739477, + -0.006104946, + -0.19188985, + -0.109438434, + -0.6390778, + -0.225923, + -0.06388359, + 0.58258075, + -0.59225315, + 0.28762913, + -0.27440026, + -0.12751752, + 0.6774172, + 0.4072271, + -0.09557539, + -0.45952606, + -0.15082344, + -0.46075124, + 0.5732196, + 0.2384744, + -0.5457002, + -0.04137841, + -0.09995257, + -0.24340849, + -0.23462786, + -0.090103514, + -0.013755925, + 0.39444718, + 0.42010134, + 0.017828332, + 0.8866703, + -0.068708844, + -0.17098089, + -0.5544612, + 0.09877368, + 0.3259165, + -0.09796945, + -0.45208776, + -0.054847404, + 0.2895752, + -0.23011853, + 0.21533857, + 0.65269035, + -0.938801, + 0.1060358, + 0.4805067, + 0.23852192, + -0.069653586, + -0.037512954, + -0.042256646, + -0.6129068, + -0.09447493, + -0.6339869, + -0.38920578, + 0.70324785, + 0.58179927, + 0.087214425, + -0.06344677, + 0.8160053, + 0.036546916, + 1.1522737, + -0.62548345, + 0.3006102, + 0.35481608, + 0.29935613, + 0.11245796, + 0.2757133, + 0.5268078, + 0.30976167, + -0.08117999, + -0.046539973, + 0.253215, + 0.43172544, + 0.43632928, + 0.12647122, + -0.18640372, + -0.4722876, + -0.09509695, + -0.19397604, + 0.12548703, + -0.0736975, + 0.13457043, + 0.04531188, + 0.15440387, + 0.5449947, + 0.2637123, + -0.2127468, + 0.068735465, + 0.14315109, + 0.343789, + 0.104511105, + 0.31635323, + 0.36777532, + -0.09846043, + -0.2073589, + -0.16534005, + 0.4012041, + -0.08074401, + 0.37185463, + -0.008287981, + -0.012111902, + -0.50337684, + 0.3312851, + -0.07554771, + -0.06730955, + 0.47047436, + 0.7569952, + -0.19431521, + -0.5821638, + 0.22945416, + 0.26007044, + -0.44829845, + -0.066208705, + -0.3238306, + -0.16951776, + -0.039687634, + 0.1437713, + -0.45331103, + 0.10925319, + -0.09458986, + 0.09938254, + -0.27249974, + 0.7351562, + -0.21128678, + -0.30086476, + -0.19648156, + -0.18262464, + 0.3975983, + -0.3738102, + 0.018587261, + 0.40805358, + -0.40764877, + -0.15850991, + -0.063035265, + 0.08210201, + 0.025341777, + 0.71950895, + 0.39816374, + -0.027505755, + 0.69080865, + -0.6561295, + -0.009786303, + 0.09360232, + -0.12829322, + 0.13388881, + -0.22216326, + 0.6755814, + -0.09015256, + 0.31525442, + -0.6520814, + 0.70733666, + -0.31127468, + -0.07359955, + 0.08796044, + -0.49167374, + 0.33357805, + -0.20963207, + -0.6901674, + 0.26195112, + 0.23049098, + 0.2566896, + 0.50416934, + -0.2615484, + 0.20364915, + -0.26399082, + -0.103528224, + 0.22187734, + 0.19637743, + -0.089634754, + -0.0024038665, + 0.12750787, + -0.2667323, + 0.20155233, + -0.23961926, + -0.026902154, + -0.5784007, + 0.52988225, + 0.27975446, + -0.04970567, + -0.3082805, + -0.030976977, + 0.37957177, + -0.67208445, + 0.20615438, + -0.16165751, + 0.40992796, + -0.54125524, + 0.06292571, + 0.34602576, + 0.13128854, + -0.13003483, + 0.39964718, + -0.050770823, + -0.53021306, + -0.15054798, + 0.019640934, + -0.0745736, + -0.58269, + -0.30677354, + 0.5991371, + -0.084702864, + 0.24749352, + -0.46418408, + 0.17796494, + 0.30588007, + -0.115597226, + 0.3591769, + 0.7915149, + -0.16346776, + 0.34415647, + -0.2547595, + 0.557577, + -0.13778156, + -0.18177813, + 0.22522505, + 0.09720023, + -0.028348768, + 0.4735776, + -0.14215831, + -0.03965075, + 0.03333099, + -0.16097637, + 0.48469257, + -0.20327547, + -0.3148808, + -0.013054885, + -0.43810052, + 0.11649414, + 0.37586164, + 0.39382353, + 0.38080588, + 0.15568528, + 0.25221074, + -0.0950552, + 0.054740954, + 0.4202591, + 0.26811305, + -0.31241524, + 0.14117825, + 0.17250937, + 0.9773261, + 0.05627183, + 0.4708211, + 0.46227318, + -0.3752956, + 0.23611245, + -0.49984804, + -0.1754927, + -0.0037310794, + -0.1079863, + -0.1991246, + 0.18798774, + -0.00787558, + -0.5548052, + 1.1306132, + 0.2124961, + -0.10995563, + -0.07259962, + -0.20488018, + -0.18622568, + 0.5115443, + -0.8214248, + 0.014191566, + -0.36520302, + -0.115861505, + 0.09461191, + -0.57542086, + 0.35698354, + -0.121462375, + 0.21045548, + -0.11836136, + 0.19236438, + 0.31922945, + -0.2516531, + 0.038711816, + -0.3933941, + -0.35398993, + 0.25637472, + -0.37381804, + 0.16288649, + -0.2153278, + -0.10002929, + -0.019279402, + -0.3956693, + -0.2484479, + -0.20767862, + 0.2506019, + -0.4375528, + -0.105473496, + -0.029040743, + 0.36207384, + 0.3775444, + 0.055385664, + -0.31955713, + -0.00752512, + -0.20883751, + -0.44460788, + 0.17438324, + 0.061688546, + 0.12023168, + 0.031900883, + 0.2888649, + -0.058811452, + 0.050583616, + -0.07790621, + -0.103337534, + 0.31411296, + 0.016671777, + 0.66554683, + -0.04194095, + 0.26946428, + 0.51145136, + -0.017753713, + -0.66459787, + -0.44526556, + 0.6279247, + -0.09880185, + 0.6404824, + -0.12499446, + 0.133944, + -0.11112064, + -0.5474458, + -0.107058965, + -0.31820634, + -0.105399124, + 0.2382508, + -0.09079871, + -0.2376006, + 0.21089727, + -0.21113336, + -0.50063235, + -0.3071646, + -0.0989658, + -0.14071453, + 0.038850434, + 0.121296674, + -0.032739498, + -0.3403598, + 0.0012457073, + 0.20050201, + -0.430511, + 0.14966497, + 0.8911996, + 0.36476782, + -0.3569046, + -0.39971578, + 0.31927553, + 0.11805504, + 0.11938761, + 0.05340088, + -0.024059467, + -0.013140626, + -0.10895747, + 0.2796601, + 0.36414564, + 0.12724015, + 0.117264085, + -0.26920307, + 0.18935283, + -0.37788126, + 0.26491812, + 0.03836885, + -0.39578414, + -0.27399176, + 0.09576878, + -0.45936072, + 0.043470427, + -0.24139321, + 0.1370526, + -0.0915978, + 0.04802484, + 0.39530408, + -0.3033863, + -0.88551193, + -0.08559283, + -0.013042171, + 0.010731339, + 0.17196198, + 0.12199037, + 0.43857682, + 0.5913921, + -0.76172465, + -0.1199759, + -0.042979926, + -0.27538475, + -0.27001467, + -0.0728898, + 0.6410136, + 0.049653575, + -0.6118575, + -0.29711524, + 0.24037957, + 0.48941308, + 0.13205482, + -0.3056218, + 0.044482008, + -0.081156194, + -0.29226223, + -0.26082405, + 0.800202, + 0.19209513, + -0.094285205, + 0.6886291, + -0.5026146, + -0.3717348, + -0.13368788, + -0.16371852, + 0.09436838, + 0.33724025, + -0.097497374, + -0.37112987, + -0.06843208, + 0.36826032, + 0.0818183, + -0.22348644, + -0.2747119, + -0.3776561, + 0.117175125, + -0.13242078, + 0.20043592, + -0.26945555, + 0.03280841, + -0.0040089116, + -0.1872156, + -0.15232569, + 0.21575336, + -0.7612926, + -0.14707524, + -0.6205926, + 0.48913363, + -0.3782239, + 0.23616967, + 0.11709538, + 0.25037113, + 0.052561417, + 0.027815893, + -0.28916466, + 0.43723518, + -0.059445873, + 0.636863, + 0.18809938, + 0.57049876, + 0.07958532, + 0.17305532, + 0.39124405, + -0.0062774904, + 0.503898, + -0.30876368, + -0.15661597, + 0.52583426, + -0.48679233, + 0.27252525, + 0.68553984, + -0.080513656, + -0.038847037, + 0.13802421, + 0.30497715, + 0.13907346, + 0.67069435, + -0.27178293, + 0.54257303, + 0.21552998, + -0.075775236, + -0.17724994, + 0.077523895, + 0.049475014, + 0.08560086, + 0.20922258, + -0.9404488, + -0.19571228, + -0.08674415, + 0.112936325, + 0.08354839, + 0.008865297, + -0.21505122, + -0.30628043, + 0.19815582, + 0.188812, + 0.06379986, + 0.11544903, + 0.123689815, + 0.009653847, + 0.50728315, + -0.12635753, + -0.08147973, + -0.31224707, + 0.00940571, + -0.21201977, + 0.2463466, + 0.088229015, + 0.47462377, + -0.20389467, + 0.26123762, + -0.12720963, + -0.1000029, + 0.07072121, + -0.048272256, + 0.334432, + 0.044561587, + -0.5251232, + -0.28216928, + -0.69202906, + -0.1754408, + -0.6967542, + 0.014111526, + -0.246032, + -0.022688538, + 0.029565163, + -0.7760069, + 0.22704361, + -0.24042653, + -0.45579317, + 0.20461822, + 0.42413843, + -0.2252774, + -0.04770711, + -0.04948879, + 0.263637, + -0.27865395, + 0.28368694, + 0.08015992, + 0.14739908, + -0.20991579, + -0.2049225, + -0.81662875, + 0.5266047, + 0.12261209, + -0.11437316, + -0.13735822, + 0.57897866, + -0.0663403, + 0.006658539, + -0.65256155, + 0.18555152, + -0.9480089, + -0.41142985, + -0.6038403, + -0.17173731, + -0.7295063, + 0.13199037, + 0.10280879, + 0.69076866, + 0.083648056, + -0.10172212, + 0.101228535, + 0.111999236, + -0.11536741, + -0.26732275, + 0.0082990825, + -0.21130167, + -0.021774545, + -0.3154509, + 0.5458674, + -0.6411141, + 0.24367085, + -0.11844016, + -0.13519773, + -0.3044447, + 0.48632115, + 0.8006941, + 0.37513155, + 0.25094146, + -0.22720873, + 0.4931678, + 0.34433165, + -0.050538603, + 0.14728737, + -0.23551449, + -0.22003126, + 0.20765723, + 0.10737207, + 0.03030815, + -0.22015391, + 0.18034646, + 0.16651878, + 0.38133097, + 0.078352645, + 0.09627759, + 0.11878823, + 0.18473156, + -0.3735446, + -0.54580003, + 0.2797028, + -0.83601874, + 0.010982415, + 0.100731656, + 0.09634161, + -0.488535, + -0.35092002, + -0.13043837, + -0.65370864, + -0.19786915, + 0.09875173, + 0.68061817, + -0.38968503, + 0.6443573, + -0.7286077, + 0.17616953, + -0.2447235, + -0.2415595, + 0.06652147, + 0.13452877, + 0.31980175, + 0.27025998, + 0.015555918, + 0.01066795, + -0.077336825, + -0.30378532, + 0.32484263, + -0.8433423, + 0.021996524, + -0.12263815, + -0.018726293, + 0.36315084, + -0.19786628, + -0.120964155, + -0.039402217, + 0.017284155, + 0.31246352, + 0.2814462, + 0.24816597, + -0.48401278, + 0.19098657, + 0.3940527, + -0.19750525, + -0.32033142, + -0.32913584, + -0.47498146, + 0.28825587, + 0.11740823, + 0.13189659, + 0.73112, + 0.072895646, + 0.086514324, + -0.3185462, + -0.19566031, + -0.46675187, + -0.2715199, + -0.21552446, + 0.028827041, + 0.34137058, + 0.20380215, + -0.20004453, + 0.042472042, + 0.6920699, + -0.35105112, + -0.22578964, + 0.1168176, + -0.24182712, + 0.5380742, + -0.38166916, + 0.14016229, + -0.40625197, + -0.15129685, + 0.2756821, + -0.30576098, + -0.30310315, + 0.26056603, + -0.754961, + 0.093633935, + 0.11803855, + -0.2995075, + -0.011835106, + 0.17248556, + 0.17824592, + 0.118864775, + -0.3892701, + 0.085995935, + 0.24911074, + 0.5255613, + -0.11115063, + -0.47906637, + -0.3701433, + 0.09395428, + 0.58050156, + 0.07723803, + 0.0015931902, + 0.06329644, + -0.43098962, + 0.4837343, + -0.4786447, + -0.19599874, + 0.5352669, + -0.6255225, + -0.15144241, + 0.48629045, + -0.04263085, + 0.3098023, + -0.01508981, + 0.331526, + -0.37000778, + 0.08684442, + -0.12284409, + -0.100356966, + -0.09139885, + 0.52123916, + -0.08628828, + -0.27930892, + 0.3738008, + 0.2572375, + -0.0011562984, + -0.16479532, + 0.4593519, + -0.1113591, + 0.81771773, + -0.31759295, + -0.13989103, + 0.24458805, + -0.036107145, + -0.20825037, + 0.07338093, + 0.52146316, + -0.52003807, + 0.184212, + -0.17052552, + -0.44024983, + 0.2009593, + -0.17866465, + 0.16818354, + -0.022748139, + -0.43057233, + -0.012033135, + 0.12271339, + 0.50483054, + -0.27798793, + 0.17789775, + 0.12701146, + -0.58668554, + 0.03632798, + 0.36367613, + 0.1916166, + -0.3890978, + 0.30791497, + 0.42691162, + 0.035812177, + 0.17502831, + -0.9206348, + -0.078505896, + -0.2267856, + 0.015043829, + 0.38227808, + 0.36170214, + -0.27456945, + -0.47960344, + 0.30093563, + 0.07031269, + -0.1994276, + 0.08345346, + 0.4251041, + 0.14488429, + 0.0965112, + -0.008161344, + -0.11101701, + 0.29011542, + 0.40992376, + 0.40148395, + -0.17543253, + -0.15346743, + 0.25607938, + -0.30666542, + 0.29985878, + 0.5871304, + 0.77165866, + 0.20368761, + 0.009256296, + 0.44215554, + 0.09308245, + 0.1360048, + 0.45271876, + 0.42241794, + -0.06726071, + 0.37504214, + -0.29960194, + 0.12961185, + 0.11510573, + 0.43381715, + 0.031512998, + -0.8976091, + 0.16776606, + 0.23242494, + -0.16913465, + -0.2567479, + -0.49470878, + 0.19878198, + 0.2170944, + -0.48253524, + -0.29823598, + 0.10230056, + -0.1448341, + 0.18055469, + -0.072831854, + 0.30260986, + 0.4726785, + -0.05236153, + -0.23567304, + -0.12910676, + 0.22360691, + 0.04732488, + -0.37579983, + 0.0007204786, + -0.045910828, + -0.060151733, + 0.82657385, + -0.34703535, + -0.2988624, + -0.065210775, + -0.67594135, + -0.41743672, + 0.17592362, + 0.06410084, + -0.057956014, + 0.043374926, + 0.19466996, + -0.10271456, + 0.32020754, + 0.27690572, + -0.2919115, + -0.3439978, + -0.08437498, + -0.05503525, + -0.12634538, + -0.13979745, + -0.43783092, + -0.18496895, + 0.18807717, + 0.4498935, + 0.18174666, + 0.10028727, + -0.40126488, + 0.0047668377, + 0.24156255, + 0.44985616, + 0.85849625, + 0.012872249, + 0.2878073, + -0.25471023, + -0.4243075, + -0.5045351, + 0.16361544, + 0.057520743, + -0.056678377, + -0.0073728915 + ], + "2025-05-19T19:18:26.220567", + "2025-05-19T19:18:26.220567", + -89.263923645, + 49.2649116516, + 36.4610939026, + "0", + "ID: 1108348
Cluster: 0
Chunk: von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton..." + ], + [ + 11690, + "17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nShrinkage7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nKonstruktion des Start-Simplex\n\uf0fc oft automatisiert (x% Abweichungen von einem Startpunkt)\n\uf0fc Gr\u00f6sse des Start-Simplex bestimmt die initiale Schrittweite\nRestringierte Probleme\n\uf0fc 1-3 Gleichheits- oder Ungleichheits-Restriktionen mittels Straf-Funktionen in die Zielfunktion integrieren.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nAbbruchbedingungen7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nRosenbrock (Banana) Function\n2 2 2\n\ud835\udc53\ud835\udc53(\ud835\udc65\ud835\udc65, \ud835\udc66\ud835\udc66) = (1 \u2212 \ud835\udc65\ud835\udc65) + 100(\ud835\udc66\ud835\udc66 \u2212 \ud835\udc65\ud835\udc65 )7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex \u2013 Himmelblau Funktion7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-AlgorithmusIn Python \uf0e0 scipy.optimize.fmin\nscipy.optimize.fmin \u2014 SciPy v1.13.0 Manual\n\uf0e0 einfaches Bsp in der Vorlesung\n\uf0e0 \u00dcbung 7.2.1 u 7.2.2\n227.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nVorteile\n\uf0fe Sehr einfach anzuwenden\n\uf0fe Simplex passt sich der \u201elandscape\u201c der Funktion an\n\uf0fe Ausreichende Stabilit\u00e4t f\u00fcr die meisten Probleme mit N<5\n\uf0fe Effizienz in der Praxis gut genug f\u00fcr kleine N<5\n\uf0fe Zielfunktion muss nicht in analytisch geschlossener Form\nbekannt sein\n\uf0fe Ben\u00f6tigt keine stetig ableitbaren Zielfunktionen\n\uf0fe keine Ableitungen\n\uf0fe Findet lokale Minima\n\uf0fe Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.", + 18240, + 8862084, + null, + "md", + null, + [ + -0.76435846, + 0.1580934, + -0.073087715, + -0.29936278, + 0.10853522, + -0.093156494, + 0.2814383, + 0.5353781, + 0.51500803, + -0.0007352047, + -0.3806599, + -0.15644482, + 0.41168827, + 0.22463825, + 0.088270195, + 0.6871004, + -0.45986772, + 0.57305783, + -0.057528935, + -0.38707054, + -0.21620734, + 0.04908679, + -0.08922185, + 0.75113255, + -0.7191411, + 0.9498533, + -0.16435517, + -0.23787788, + 0.3800425, + 0.11354802, + -0.47542486, + -0.49541754, + 0.3207547, + 0.024558835, + 0.24160671, + -0.073839456, + -0.034452878, + -0.23755127, + -0.4881137, + 0.8118895, + -0.23739241, + -0.23232663, + 0.28792813, + -0.49988678, + 0.06464484, + 0.274544, + 0.06505476, + -0.86260456, + 0.056498833, + 0.27931142, + -0.1278758, + -0.20856363, + 0.19485915, + -0.047705356, + -0.32697544, + -0.7931921, + 0.019487567, + 0.12637736, + -0.1609321, + 0.55731714, + 0.097081766, + -0.21359484, + -0.55772555, + 0.19722511, + 0.27280506, + -0.3203401, + 0.22275037, + -0.12240959, + -0.17405395, + -0.39586347, + 0.27450877, + 0.12937015, + 0.12750727, + -0.4053597, + -0.468646, + -0.031685162, + -0.09188672, + -0.04874848, + 0.12770747, + 0.33860713, + 0.5243453, + -0.04679083, + 0.10053653, + 0.06549233, + 0.15000853, + -0.087590255, + 0.5222434, + 0.7876439, + 0.4583913, + -0.061303586, + 0.01976714, + 0.41601574, + 0.81642044, + 0.51794267, + 0.33250532, + -0.26579896, + -0.15804335, + -0.01966207, + 0.41194206, + -0.09763863, + -0.32625365, + -0.004959924, + -0.18148206, + -0.37532008, + 0.7159233, + -0.46937513, + -0.26835445, + 0.07513886, + -0.056224108, + 0.096346274, + 0.9037197, + -0.5023751, + 0.2899629, + 0.84151477, + -0.03865024, + -0.21180296, + -0.38464284, + -0.07266723, + -0.26846892, + 0.3381745, + -0.04981286, + -0.2894829, + 0.58900654, + -0.040414024, + 0.16378707, + 0.15510823, + 0.14505216, + -0.047563903, + -0.074382454, + 0.30430233, + -0.3858909, + 0.12309824, + 0.052641176, + -0.37547305, + 0.8152657, + 0.03078861, + 0.32295343, + 0.06905412, + -0.08102481, + 0.35439444, + -0.31769568, + 0.01026522, + -0.18288943, + -0.3909651, + 0.8626893, + -0.11527869, + 0.48890898, + -0.034046974, + -0.29530543, + -0.7619819, + 0.13989583, + 0.64122593, + 0.40454918, + 0.51814765, + -0.42360753, + -0.13860384, + 0.061985075, + -0.027465858, + -0.22388154, + -0.23838803, + 0.018694684, + 0.52114564, + -0.69672483, + 0.21743992, + 0.24562743, + -0.014547704, + -0.41148606, + -0.34475613, + 0.227848, + -0.47558486, + -0.34466496, + 0.03661737, + 0.419892, + -0.23552546, + 0.330673, + 0.8524864, + 0.31100434, + -0.36136356, + 0.33359683, + -0.15545678, + 0.004112195, + -0.06739663, + -0.3082544, + -0.48241028, + -0.8155121, + -0.38147786, + 0.3712898, + -0.8337603, + 0.1863464, + 0.54827714, + -0.43362215, + 0.098662145, + 0.67495006, + -0.24531858, + -0.04242445, + 0.07362506, + -0.03898607, + -0.12182131, + -0.4792208, + 0.054577187, + 0.101546705, + -0.2515872, + -0.22690767, + -0.35121363, + -0.98545337, + -0.27292845, + -0.17451453, + -0.077686824, + -0.11044136, + -0.03932044, + 0.65096784, + -0.07082595, + -0.10320905, + 0.39234242, + -0.091781646, + 0.4770295, + -0.52377564, + -0.30576026, + 0.5277612, + -0.2028412, + 0.20080598, + -0.30133975, + -0.49084705, + -0.5713453, + -0.11885302, + -0.2254045, + -0.58996063, + -0.032251753, + -0.22968276, + 0.19265749, + -0.38136417, + -0.1239446, + 0.0011623567, + -0.05083348, + -0.71889824, + -0.5675693, + 0.1611644, + 0.44999593, + -0.3723476, + -0.33120507, + 0.7540611, + 0.6511371, + -0.16195881, + -0.3070734, + 0.07806372, + -0.86201143, + -0.2945024, + 0.1137352, + 0.1834323, + -0.16631421, + -0.08936679, + -0.5299064, + 0.03910493, + -0.18636551, + -0.2889297, + 0.20696115, + 0.35369927, + 0.20289145, + -0.33764002, + -0.09430855, + -0.38317084, + 0.037244115, + 0.5759634, + 0.7129554, + 0.12617187, + 0.43276685, + 0.312478, + 0.019973127, + 0.09000402, + 0.2178308, + 0.0024562012, + -0.21913712, + -0.27937582, + 0.3058015, + -0.03358838, + -0.56743157, + -0.15920109, + 0.47228032, + 0.62870574, + 0.02999929, + 0.5130141, + 0.1978101, + -0.41866818, + -0.0149106365, + 0.31725156, + -0.0802273, + -0.116397515, + 0.5366313, + 0.30377573, + 0.07121404, + 0.02335701, + -0.07385683, + 0.6928565, + 0.081953086, + -0.25459424, + 0.10986748, + -0.08487703, + -0.059321046, + -0.098643646, + -0.2886576, + 0.0008137748, + 0.16832677, + 0.8399263, + -0.42941827, + -0.290886, + 0.5879338, + -0.0943083, + -0.026265424, + -0.25865796, + 0.34909162, + 0.45110312, + -0.35540134, + 0.36146218, + -0.2786593, + 0.57091653, + 0.20982745, + -0.33232117, + 0.24003023, + -0.08089431, + 0.08968344, + -0.2977375, + 0.46187538, + 0.018337708, + -0.25077543, + -0.14733641, + -0.3545895, + 0.55492234, + 0.24044016, + -0.6480576, + 0.130783, + -0.036952883, + 0.028617553, + 0.28996667, + 0.33184603, + -0.16738628, + -0.10877174, + -0.20964444, + 0.292027, + -0.26348716, + -0.3704903, + -0.52670956, + 0.19282788, + 0.29716104, + 0.9259522, + 0.19924662, + -0.47499955, + 0.35689396, + -0.47658744, + 0.008514266, + 0.410699, + -0.55712587, + 0.17223139, + 0.21658553, + -0.82245743, + 0.20009941, + 0.38614374, + 0.037410453, + 0.37453866, + -0.09873213, + -0.19888031, + -1.1254762, + -0.5996504, + 0.5107833, + -0.113702364, + 0.007988565, + -0.11390634, + -0.25078768, + -0.016949652, + -0.5926905, + -0.2582782, + 0.08202977, + -0.38086262, + -0.017230818, + 0.78881687, + 0.009829938, + 0.21818006, + 0.14945383, + 0.15970464, + 0.09800721, + 0.09753589, + 0.6123523, + -0.3973355, + 0.10512462, + 0.2740837, + -0.4168057, + 0.7247981, + 1.1398716, + 0.1558471, + 0.08539438, + 0.02868146, + -0.051404186, + 0.07461022, + -0.32217532, + 0.1819247, + -0.23899433, + 0.01592201, + 0.21257447, + 0.34466317, + 0.92074054, + 0.05108045, + -0.09421566, + 0.5694568, + -0.107999034, + 0.60161024, + -0.19636214, + -0.25250778, + -0.27944362, + -0.21642303, + -0.38906565, + -0.18214786, + -0.3653047, + 0.078966886, + 0.54663557, + -0.41351607, + 0.4484713, + 0.06653538, + 0.022298466, + 0.2672264, + 0.15730172, + -0.5184722, + -0.17143613, + 0.13028741, + -0.30456072, + 0.4932968, + -0.18217486, + -0.6264838, + -0.5055411, + 0.071678095, + -0.6292123, + 0.041987184, + 0.1798709, + 0.04998335, + -0.3450161, + 0.09068437, + -0.09607725, + -0.2890489, + -0.21462223, + 0.1940257, + -0.26697046, + -0.24825825, + -0.31663013, + 0.1315463, + -0.25506938, + -0.4076334, + 0.9255704, + -0.4903977, + -0.41694367, + 0.4183383, + 0.45987973, + 0.16560909, + 0.043659765, + -0.07942539, + -0.39618072, + -0.17740367, + 0.045842808, + 0.08081761, + -0.25314695, + 0.22389689, + 0.15246743, + 0.049586136, + -0.15456721, + -0.50682515, + 0.5409346, + -0.7032192, + -0.3539291, + -0.8000236, + 0.3321388, + -0.05679696, + 0.41920185, + -0.42620277, + 0.2735629, + 0.124630906, + 0.029739976, + -0.26046753, + 0.03180387, + -0.2669118, + 0.30640888, + -0.17302185, + -0.08427471, + -0.3992293, + -0.06521553, + 0.6178433, + 0.23549345, + 0.17295313, + 0.44622117, + 0.26672995, + 0.03762978, + 0.2365926, + -0.0121914465, + 0.11941968, + -0.036890764, + -0.5374711, + 0.9265633, + 0.3641398, + 0.43389636, + -0.51161754, + -0.5022135, + 0.43626723, + 0.3706719, + 0.2118917, + -0.40035558, + -0.15030867, + 0.47702953, + 0.21849723, + 0.43490595, + -0.45268476, + -0.08872833, + 0.08579644, + -0.43232027, + -0.41003504, + -0.402201, + 0.16690384, + -0.08179561, + 0.252404, + -0.40165174, + -0.113820806, + 0.27089784, + 0.37881324, + -0.45242876, + -0.119031556, + 0.26555106, + -0.006113112, + -0.06218499, + 0.078941405, + -0.19111665, + -0.23900408, + -0.3671733, + 0.030129587, + 0.18399382, + -0.14180627, + -0.04421821, + 0.5842025, + 0.23454142, + -0.25413555, + 0.14393127, + -0.099988095, + -0.08738351, + 0.9069038, + -0.47876003, + -0.41826642, + 0.19028097, + -0.46950024, + 0.29542574, + 0.4490241, + -0.02069278, + -0.17547676, + 0.13672361, + -0.12487464, + 0.22670579, + 0.17022571, + 0.19238675, + 0.71177465, + -0.24124925, + -0.30717227, + -0.15682207, + -0.050933976, + 0.07727265, + -0.66712177, + 0.48224786, + 0.04402926, + 0.32317436, + -0.42534146, + 0.19108811, + 0.019992642, + 0.5749297, + -0.4353638, + -0.05209191, + -0.41327205, + 0.1411579, + 0.086704, + 0.18043754, + 0.46786126, + -0.027490435, + 0.31732014, + 0.4620303, + 0.21802087, + -0.3017462, + 0.08877404, + -0.10466983, + -0.23543775, + -0.73294085, + 0.14943215, + 0.044115983, + -0.15680969, + 0.5556082, + -0.46341863, + -0.23965766, + -0.73132807, + -0.15808097, + 0.63977766, + 0.031931866, + -0.007828007, + -0.20656219, + 0.4465946, + -0.13852842, + -0.19481215, + 0.21316244, + 0.09432639, + 0.14717728, + 0.105731644, + 0.30227515, + -0.4756776, + -0.13216028, + -0.7352478, + -0.53548205, + -0.051679604, + 0.20631483, + -0.18358833, + 0.07204904, + -0.04613191, + -0.48201025, + -0.2025435, + -0.1553475, + -0.0082765315, + 0.0021823756, + -0.3422866, + 0.033421293, + -0.5794189, + 0.8407515, + -0.87416494, + -0.010459706, + 0.21605355, + 0.6057884, + 0.04999288, + -0.051267534, + 0.26570678, + -0.39252287, + -0.047345262, + 0.0019045025, + -0.01743745, + 0.19776222, + -0.14059907, + 0.3517576, + 0.67221826, + -0.23444971, + -0.3743894, + -0.53071815, + -0.23642766, + 0.097572036, + 0.3526124, + 0.18644369, + 0.24241522, + 0.14675097, + -0.13100407, + -0.5918497, + 0.048125375, + 0.18095517, + -0.83881354, + 0.2793264, + -0.4927774, + -0.13814324, + -0.44716123, + 0.37800866, + -0.119697675, + 0.011659047, + 0.23456651, + -0.021110743, + -0.050856575, + 0.22107223, + -0.35833353, + -0.048139505, + -0.38540345, + -0.09470033, + -0.4235613, + -0.7269284, + 0.07801462, + -0.27534997, + -0.9552277, + 0.12146942, + 0.15970899, + -0.13024709, + -0.5335079, + 0.8584491, + 0.054212585, + -0.57314396, + -0.1480619, + 0.018087234, + 0.10186708, + -0.87455475, + -0.57063013, + 0.1245783, + -0.04981219, + -0.060127832, + -0.030394346, + -0.19197997, + 0.06760583, + 0.32466257, + -0.14033952, + -0.15018532, + 0.060018882, + -0.47967654, + 0.36741433, + 0.06811163, + 0.17008136, + -0.53431666, + -0.3614384, + 0.10043399, + 0.55275685, + -0.06216395, + 0.013523653, + 0.0086090285, + 0.21490522, + -0.6569529, + 0.17505145, + -0.05497944, + 0.31817544, + 0.1265224, + -0.48085168, + -0.2378861, + 0.17799155, + 0.123813465, + -0.076036215, + 0.22801481, + -0.07343795, + -0.2960186, + 0.58616394, + 0.028885597, + 0.48439476, + 0.56947213, + 0.34093577, + 0.05374577, + -0.62694335, + 0.75001085, + -0.28683648, + -0.04178404, + -0.75739384, + 0.26535565, + -0.13762185, + 0.35176384, + 0.037043743, + -0.21988142, + -0.22028707, + 0.013810039, + -0.64680314, + -0.06349965, + -0.3025728, + 0.3671091, + -0.16024297, + 0.5026206, + 0.037790816, + 0.16780943, + -0.03947652, + 0.6654925, + -0.10385238, + 0.4092394, + -0.009219738, + 0.059217047, + -0.19153455, + -0.44397822, + -0.11809682, + 0.1260096, + -0.12449892, + 0.2007513, + -0.3045962, + -0.13209844, + 0.6111055, + 0.3026933, + 0.8037558, + 0.11538359, + -0.33313167, + -0.055685855, + 0.054417685, + -0.15248173, + 0.30076596, + 0.13716319, + -0.5712851, + 0.3891684, + 0.26152048, + 0.4203959, + 0.036933377, + -0.4319454, + -0.28551754, + 0.017684318, + 0.22160824, + 0.44408068, + 0.44573212, + -0.008354049, + 0.25855583, + -0.08579841, + 0.10992867, + 0.212869, + 0.036901664, + -0.31680363, + 0.62077886, + 0.374947, + 0.031086665, + 0.72747856, + 0.119584456, + -0.28424543, + -0.03566774, + 0.36809945, + 0.08928934, + 0.42875987, + -0.13426416, + -0.1702614, + 0.33824736, + -0.43423307, + 0.28540143, + 0.32786945, + -0.13347945, + 0.080083944, + 0.010167793, + -0.2322206, + -0.35421264, + 0.21657369, + 0.15161136, + -0.37010014, + 0.010822529, + -0.21322241, + -0.1076278, + 0.01660639, + -0.2978794, + 0.057266265, + 0.06769035, + 0.3464602, + 0.32845995, + -0.11300166, + 0.0294021, + 0.16493326, + 0.05593534, + 0.30448037, + -0.16910394, + 0.0910083, + 0.2392782, + -0.14683455, + 0.87557214, + 0.55410033, + -0.4011798, + -0.02103427, + -0.1795123, + 0.094825365, + -0.3555215, + -0.43804342, + -0.40228975, + -0.2081953, + 0.41411886, + 0.023502665, + -0.42560637, + 0.41251594, + 0.36667886, + -0.078081414, + 0.12028064, + 0.046292383, + 0.5380337, + -0.37641725, + 0.028952084, + -0.5120724, + -0.024499133, + -0.2444987, + 0.22903106, + 0.21325238, + -0.24167348, + 0.097905144, + 0.8546463, + -0.029499542, + 0.22881053, + -0.0961626, + 0.26125896, + 0.70006853, + 0.3113179, + 0.10514471, + 0.22516295, + 0.18668272, + 0.17133197, + 0.40563694, + -0.18695016, + -0.06567124, + 0.120568134, + 0.04438822, + -0.069247946, + -0.4587872, + 0.31199235, + -0.14861648, + 0.11203278, + 0.23531675, + 0.18250783, + 0.47738025, + 0.5108473, + 0.4239732, + -0.07652202, + 0.1433823, + -0.26051852, + 0.031035524, + 0.024118446, + 0.07600614, + -0.32805812, + 0.002581142, + 0.08066723, + -0.3516255, + -0.48156914, + -0.29400933, + -0.09547861, + -0.10555089, + 0.20663373, + -0.032584462, + -0.21473047, + 0.07050566, + -0.50129706, + 0.41608053, + 0.25420785, + -0.25865543, + -0.51864684, + -0.0983159, + -0.44819823, + 0.3936638, + 0.04694903, + -0.54191357, + -0.38527927, + 0.12975766, + -0.3029484, + 0.08293193, + 0.6302585, + -0.23793933, + -0.23428884, + 0.17348258, + 0.20523351, + 0.012134874, + 0.24703194, + -0.36114085, + -0.022778288, + 0.095217824, + 0.7496907, + 0.1906197, + -0.23438525, + 0.53418005, + -0.2802341, + 0.01022163, + 0.0760252, + 0.111532286, + 0.4389631, + 0.045519896, + -0.32444116, + -0.32643354, + -0.20295256, + -0.8235279, + 0.17627843, + 0.7164485, + -0.13235977, + 0.30631968, + 0.33759418, + 0.536431, + -0.078100495, + 0.034237713, + 0.22985068, + -0.3619376, + 0.10277475, + 0.22478308, + 0.01051496, + 0.067732245, + -0.05382456, + 0.26086462, + -0.2504573, + -0.2826854, + -0.07047109, + 0.073169366, + -0.27716532, + -0.0015296489, + 0.70835984, + 0.009485222, + -0.28480753, + 0.18213597, + -0.49422705, + -0.106290564, + -0.26712662, + -0.14089054, + 0.4073733, + 0.24990521, + -0.21663104, + -0.34164974, + 0.19806218, + 0.08757973, + 0.1735103, + 0.13821153, + -0.01913929, + 0.52424246, + -0.53359693, + -0.32855862, + -0.17660622, + -0.07725928, + -0.21871358, + 0.063272014, + -0.11694294, + -0.19619739, + 0.39203867, + 0.34497496, + 0.00968425, + -0.40117228, + 0.041847542, + -0.6226212, + -0.30022696, + 0.14355904, + 0.005571505, + -0.27352148, + 0.023582727, + -0.005375512, + -0.27644816, + 0.49334803, + 0.50502634, + -0.6184178, + -0.06339064, + 0.16493094, + -0.059731133, + 0.5060758, + -0.14926529, + -0.9357425, + -0.48184216, + 0.5180299, + -0.5632575, + -0.023265433, + -0.012530537, + -0.36599427, + 0.3855212, + 0.099426135, + -0.12885815, + -0.17985141, + -0.050658707, + 0.1771085, + 0.42179242, + -0.09094602, + -0.06849867, + -0.7441382, + 0.085169435, + 0.1553886, + 0.03784372 + ], + "2025-05-19T19:19:49.203516", + "2025-05-19T19:19:49.203516", + -74.6829681396, + -61.310043335, + 31.0393733978, + "5", + "ID: 8862084
Cluster: 5
Chunk: 17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\n..." + ], + [ + 11685, + "Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukturen einfach und doppelt verkettete Listen (evtl.\n\nFIFO u LIFO) M. B\u00fcnner B3.02\n8 21.02.2025 13:30-15:00 Fr (evtl.\n\nFIFO u LIFO) Bin\u00e4re B\u00e4ume und Graphen M. B\u00fcnner B3.02\n9 27.02.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n9 28.02.2025 13:30-15:00 Fr 1.\n\nHeaps und Heapsort 1.1 Heaps M. B\u00fcnner B3.02\n10 06.03.2025 13:30-15:00 Do 1.1 \u00fcben und 1.2 Heapsort M. B\u00fcnner B3.02\n10 07.03.2025 13:30-15:00 Fr 1.2 Heapsort mit Python M. B\u00fcnner B3.02\n11 13.03.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n11 14.03.2025 13:30-15:00 Fr 3.\n\nNicht-konvexe Optimierung in einer Dimension Parameterscan, Bisektionen M. B\u00fcnner B3.02\n12 20.03.2025 13:30-15:00 Do Modifizierter Newton M. B\u00fcnner B3.02\n12 21.03.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n13 27.03.2025 13:30-15:00 Do Schrittweitensteuerung M. B\u00fcnner B3.02\n13 28.03.2025 13:30-15:00 Fr Straffunktionen M. B\u00fcnner B3.02\n14 03.04.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n4.\n\nReelwertige Optimierung in N Dimensionen 4.0 Definitionen M. B\u00fcnner B3.02\n14 04.04.2025 13:30-15:00 Fr 4.1 Parameter-Scan\n17 24.04.2025 13:30-15:00 Do 4.2 Downhill-Simplex-Algorithmus M. B\u00fcnner B3.02\n17 25.04.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n18 01.05.2025 13:30-15:00 Do 4.2 Dowhill-Simplex L\u00f6sung von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.", + 18240, + 10153438, + null, + "md", + null, + [ + -0.6860801, + -0.3485546, + 0.46395817, + -0.20441821, + -0.17239648, + 0.5258232, + -0.17315537, + -0.06618009, + -0.091196164, + -0.3730068, + -0.043280527, + 0.5113549, + 0.4027665, + -0.36744648, + -0.4478888, + 0.60762215, + -0.22295806, + 0.7349587, + 0.086457334, + -0.27553374, + -0.6360301, + -0.048350893, + -0.12348564, + 0.6529018, + -0.26412815, + 0.40382835, + -0.15250124, + 0.33308154, + 0.7291152, + 0.3976206, + 0.37770534, + 0.26793548, + -0.23241341, + -0.40180683, + -0.13164178, + 0.75910014, + 0.57518876, + -0.18396497, + -0.70033646, + 0.30310062, + -0.94096315, + -0.015046481, + -0.47506946, + -0.044394616, + 0.5435846, + 0.1603361, + -0.967958, + -0.10958026, + 0.3257379, + -0.078564085, + 0.16164842, + 0.11590589, + -0.8159819, + 0.26658115, + 0.3214972, + -0.48644543, + 0.114687875, + -0.7085749, + 0.098047815, + -0.980673, + -0.032232814, + -0.05258547, + 0.022156134, + -0.106025405, + 0.42912948, + 0.03945327, + 0.08103447, + -0.24689955, + 0.5330127, + 0.45275176, + -0.4095543, + 0.14782739, + 0.19674322, + -0.6879161, + -0.30199474, + -0.23333098, + -0.32973096, + -0.4196811, + -0.093533605, + 0.31919545, + 0.8372393, + 0.027855966, + -0.311835, + 0.3718544, + -1.0823565, + 0.09732392, + 0.060192727, + -0.21456935, + 0.22497958, + -0.30766487, + 0.19325899, + 0.17108542, + -0.23097503, + 0.63292223, + 0.010815224, + 0.106230825, + 0.28183043, + 0.6241955, + 0.08298084, + -0.34695968, + 0.2996233, + 0.16239077, + -0.70189357, + 0.5480686, + -0.13229646, + 0.0007576123, + 0.8606017, + 0.170947, + -0.5987367, + -0.10136402, + 0.60594875, + 0.5036453, + 0.4994106, + 0.19977245, + -0.47415957, + -0.37461323, + -0.6320662, + -0.028156422, + -0.024673622, + 0.22961576, + 0.07641259, + -0.2545646, + 0.3052471, + -0.28090623, + -0.16017857, + 0.042913407, + 0.8044146, + 0.7114475, + -0.0642388, + 0.99027973, + -0.07886279, + 0.06447899, + -0.32335612, + 0.0001365487, + -0.28215742, + -0.13375168, + -0.39451405, + -0.16909838, + -0.11682804, + 0.120517135, + 0.07318341, + -0.17162478, + -0.46246165, + -0.35330614, + 0.10484846, + 0.24791951, + -0.12731892, + -0.50783664, + 0.3618289, + -1.0982708, + 0.09533071, + -0.1883993, + 0.72585833, + 0.53216237, + -1.0699661, + -0.6406414, + -0.4135726, + 0.7534077, + -0.0187695, + -0.34824085, + -0.18823946, + -0.41106436, + 0.09401887, + 0.18871403, + -0.2814437, + -0.10960567, + -0.8113512, + -0.46214312, + 0.25103912, + 0.0013840524, + 0.3335204, + 0.5888298, + -0.2050673, + 0.13162608, + -0.16718927, + 0.61101454, + -0.31022134, + 0.48997703, + 0.006404396, + -0.499426, + 0.048823413, + 0.39079463, + -0.20261157, + 0.37737855, + 0.2919023, + -0.17956193, + -0.7258667, + -0.257869, + -0.14300701, + 0.20836586, + -0.4788742, + -0.20069444, + -0.0043600798, + -0.92583555, + 0.24084401, + -0.25526688, + 0.12948486, + 0.664255, + -0.28819323, + -0.06161815, + 0.031459633, + 0.38797498, + 0.52117515, + 0.04604868, + -0.06253423, + -0.43427673, + -1.1362423, + 0.62175083, + -0.22730468, + 0.27340862, + -0.27601793, + -0.35191455, + -0.51655614, + 0.2329652, + 0.1403372, + 0.006029185, + 0.39278388, + 0.1798011, + 0.39050344, + 0.07474396, + 0.09279763, + 0.2761983, + -0.27216065, + -0.3841997, + 0.019106079, + 0.3840283, + 0.13505271, + 0.34418413, + -0.19022708, + 0.08186449, + 0.21895693, + -0.24413255, + 0.32325014, + -0.26621217, + 0.19116148, + -0.29064533, + -0.023943014, + 0.01408577, + 0.4359628, + 0.3230834, + -0.16144198, + 0.02921491, + 0.5623311, + -0.22518592, + -0.48292437, + -0.41794583, + 0.41864115, + -0.13766113, + 0.5236155, + 0.55685955, + 0.37707752, + -0.37464654, + 0.08642087, + -0.2447605, + -0.3685829, + -0.030297473, + 0.563435, + -0.14187954, + -0.842044, + 0.15359634, + -0.36064434, + 0.2973316, + 0.03557551, + 0.19956698, + -0.23925109, + -0.17533791, + 0.2213535, + -0.40917885, + -0.26059127, + -0.068692796, + 0.10054211, + 0.030156832, + 0.0013911054, + 0.36337513, + -0.24408403, + 0.23329794, + 0.1942243, + -0.32621187, + -0.26874563, + -0.124667406, + 0.11869365, + -0.24760775, + 0.1753402, + -0.7036072, + -0.49275708, + 0.003779618, + 0.34992558, + 0.24649972, + 0.17034328, + 0.105575, + -0.16810402, + -0.5526359, + 0.78009427, + 0.22755045, + 0.57721543, + -0.037881676, + -0.043095045, + -0.04691398, + 0.26173007, + -0.6536579, + 0.19095558, + 0.56185293, + 0.3144775, + 0.033251487, + 0.3466827, + 0.27645966, + -0.10950956, + -0.15846083, + -0.13779193, + -0.058052097, + -0.056354437, + 0.2384865, + 0.7874806, + -0.24707839, + -0.0948301, + -0.0103689125, + 0.11410369, + -0.562285, + 0.43039906, + 0.017447397, + 0.31779972, + 0.73132986, + -0.35151857, + -0.16058862, + -0.4051296, + 0.009876985, + -0.2042031, + 0.012267202, + -0.353221, + -0.30619404, + 0.048097763, + -0.3485511, + 0.35861322, + 0.31316483, + -0.26327837, + -0.41485885, + -0.34626505, + 0.99694973, + -0.056456424, + -0.3024091, + 0.7581393, + -0.5269681, + 0.18442762, + -0.61693645, + -0.30976468, + 0.1569087, + 0.54342616, + -0.21989511, + 0.17409766, + 0.53342974, + -0.083186276, + 0.13011861, + -0.59493315, + -0.415506, + 0.0015234202, + 0.4974453, + -0.061597507, + -0.6457294, + -0.4822651, + 0.22157495, + 0.11033867, + -0.23296547, + -0.1290575, + -0.026239492, + -0.063676514, + -0.057714008, + -0.07190033, + -0.008416915, + -0.38685182, + -0.10297019, + 0.0004220549, + -0.356672, + -0.29946795, + -0.34350997, + 0.11906559, + -0.7911113, + -0.41706347, + -0.26543042, + -0.07129728, + 0.13572657, + 0.430287, + 0.09431683, + 0.33169484, + 0.29210016, + -0.02444471, + 0.15620321, + 2.029257, + -0.21317169, + 0.7233217, + -0.25526613, + 0.5971234, + -0.09578345, + 0.11863645, + 0.27826366, + -0.6018005, + -0.3623148, + -0.110946335, + -0.34779453, + -0.14536633, + -0.25476557, + 0.30440843, + 0.08087215, + 0.043604422, + -0.3100603, + -0.13520136, + -0.06687803, + -0.026638012, + 0.077062584, + -0.2284721, + -0.9444294, + 0.024161618, + 0.369872, + 0.20965564, + -0.17028984, + 0.07078336, + 0.01368865, + -0.3090827, + 0.017295305, + -0.09061946, + 0.08116731, + -0.15135634, + 0.36598223, + 0.035531096, + 0.2985763, + -0.090075664, + -0.5875514, + -0.1595432, + -0.6139428, + 0.320748, + -0.15143462, + -0.032016832, + 0.09553331, + -0.27477115, + 0.019357543, + -0.15979686, + -0.5698217, + 0.13376307, + -0.08427775, + -0.32124844, + -0.2647876, + 0.6624501, + -0.19917205, + 0.02146909, + -0.6466082, + -0.073993176, + -0.9885278, + -0.4193592, + 0.2468539, + 0.024406554, + 0.5287464, + 0.07563445, + -0.16637278, + -0.11358879, + -0.20569226, + 0.011063298, + 0.10000098, + -0.31387419, + 0.5456193, + 0.34747505, + 0.26594344, + 0.16782577, + -0.4839821, + -0.63927335, + -0.19178826, + 0.27510977, + -0.067705184, + 0.49221545, + -0.59542143, + 0.20466644, + -0.44972497, + -0.07890808, + -0.42398483, + -0.043234043, + 0.21367003, + -0.2132347, + -0.056402788, + 0.15442462, + -0.36094022, + 0.048838355, + -0.08287494, + -0.24208526, + -0.38290033, + 0.23209488, + 0.15425287, + 0.20316578, + -0.27841163, + 0.43552342, + -0.18721311, + 0.17789155, + -0.31993422, + -0.35306036, + 0.25398663, + 0.01213206, + 0.31121194, + 0.33026677, + -0.4265131, + -0.5230213, + 0.0055217, + 0.8855003, + 0.4653291, + -0.44568247, + 0.08404093, + -0.18140033, + -0.2040696, + -0.19184278, + -0.49080408, + 0.10910199, + -0.52560747, + -0.19274965, + -0.31321326, + 0.21505879, + 0.46277383, + -0.10848859, + 0.2476551, + 0.1635314, + 0.28406337, + -0.44451958, + 0.06298702, + -0.3804049, + -0.40523404, + 0.67032033, + 0.09428958, + -0.17903516, + 0.34972286, + 0.43184057, + -0.13443932, + -0.07969784, + 0.057638515, + -0.18940887, + 0.6095914, + 0.06707671, + 0.43615067, + -0.11964873, + -0.34688914, + 0.18390676, + 0.21178079, + -0.2127536, + 0.47575635, + -0.12537812, + 0.13106315, + 0.04816245, + 0.18369582, + 0.56648314, + 0.02633335, + -0.30112267, + -0.21021608, + 0.62334394, + -0.56254214, + 0.50711113, + 0.026362956, + 0.37148467, + -0.30734268, + 0.13791992, + 0.18387683, + -0.3029835, + -0.18743064, + 0.2512297, + -0.05024031, + -0.12411865, + 0.1298092, + -0.12842037, + 0.0015813485, + 0.42588708, + -0.13815619, + 0.11098805, + 0.39076093, + -0.20858353, + 0.12424139, + 0.06438958, + 0.16825227, + -0.08843251, + -0.40865195, + -0.5351391, + 0.14558966, + 0.59570223, + 0.14352679, + 0.5572146, + 0.078978226, + 0.24309309, + -0.06900851, + -0.4133992, + 0.76439196, + -0.638155, + -0.39495802, + 0.12977988, + -0.54981637, + -0.1782025, + -0.008346694, + 0.009326126, + -0.048258714, + 0.5410699, + 0.29433548, + -0.21673045, + -0.093735486, + -0.022244994, + 0.39394453, + 0.054438837, + -0.22593369, + 0.36207658, + -0.06334727, + 0.21071163, + 0.047024548, + 0.3905145, + 0.8402073, + -0.19227402, + 0.12917095, + 0.38638166, + 0.13610038, + -0.037453897, + 0.7156793, + 0.030355264, + 0.04843393, + 0.009829104, + -0.44319516, + 0.13311364, + 0.2541525, + -0.046379313, + -0.2808207, + -0.34123662, + 0.21512434, + 0.6074028, + 0.34798157, + -0.10129495, + 0.44183388, + 0.34999934, + 0.42964444, + 0.32243028, + -0.16277914, + 0.22861466, + -0.12166809, + 0.5333321, + 0.48339283, + -0.25110775, + 0.4819685, + 0.37097082, + -0.32969442, + -0.024265073, + 0.78415334, + 0.25793454, + 0.16162944, + -0.087269865, + -0.33500057, + -0.3261803, + 0.5518687, + -0.90507007, + -0.013383376, + -0.001977086, + 0.0024818778, + -0.065115415, + 0.09790979, + 0.18072376, + -0.0738818, + -0.11028995, + -0.600401, + 0.04543043, + 0.25311455, + -0.0031429231, + -0.20072408, + 0.27386862, + -0.21350135, + 0.08375318, + -0.12114306, + 0.43434772, + 0.17924203, + 0.31343308, + 0.35821825, + 0.35753828, + -0.3355286, + 0.18939859, + 0.109726354, + -0.14672968, + 0.00075607, + 0.3742777, + -0.3500672, + 0.1728265, + -0.066718504, + 0.103530705, + -0.11454057, + 0.23822464, + -0.19348122, + 0.16772825, + -0.33940458, + 0.445262, + -0.55615187, + 0.02941596, + 0.031251326, + 0.054873712, + -0.3686113, + -0.09899491, + -0.52229613, + -0.74973345, + 0.12660062, + -0.0734586, + -0.13181083, + -0.20107585, + 0.0026498586, + 0.10669604, + -0.24962789, + -0.18521641, + 0.33509785, + -0.31328562, + 0.10531768, + -0.06530452, + -0.4216859, + -0.14304638, + 0.25585204, + 0.20474237, + -0.019952867, + -0.24179775, + 0.04544133, + -0.43620762, + 0.22009724, + -1.0078866, + 0.31539172, + -0.055549443, + -0.15128395, + -0.46001205, + -0.26822767, + -0.15610215, + -0.28285488, + -0.3897249, + 0.6116927, + 0.5115852, + -0.16646034, + -0.51120347, + 0.050354287, + -0.13055253, + -0.14442888, + -0.24128015, + 0.17524274, + 0.37185687, + -0.09662709, + 0.2211615, + 0.23827557, + 0.046966955, + -0.9924135, + 0.21720257, + 0.22302425, + -0.09668941, + 0.10737849, + -0.16213062, + 0.31022477, + -0.54522794, + -0.31969857, + -0.38858533, + 0.060322884, + -0.22654155, + -0.49537724, + -0.15491302, + 0.2663998, + 0.28780505, + 0.54319113, + 0.5756062, + -0.28980452, + 0.04658731, + 0.3487832, + 0.66586655, + 0.33021766, + 0.09306145, + -0.2509511, + -0.2661513, + 0.54346806, + -0.41898304, + -0.38904563, + 0.18791656, + -0.3061723, + 0.43146136, + 0.3519523, + 0.0027168468, + -0.3259218, + -0.6692024, + 0.1373967, + -0.09519786, + -0.25879303, + 0.23446402, + 0.3898967, + -0.67651945, + -0.03949001, + -0.41109696, + 0.35135323, + 0.3674627, + 0.075010106, + -0.09426131, + -0.19750182, + 0.5369876, + 0.06403425, + 0.41882786, + 0.0014929995, + 0.36894122, + 0.049361043, + 0.16047618, + -0.9077335, + 0.038370397, + 0.09435318, + 0.19818088, + 0.17694972, + -0.21300194, + 0.47215307, + -0.062955394, + 0.35617256, + 0.29666927, + 0.40636548, + 0.17498729, + -0.26456627, + -0.08921361, + 0.13839418, + 0.11258583, + -0.00842293, + 0.13503903, + -0.34412557, + 0.25042546, + 0.0037803426, + -0.010467604, + 0.27210462, + -0.1902479, + 0.012865007, + -0.39220074, + 0.20186968, + -0.2074265, + 0.005490862, + -0.07258669, + -0.094529174, + -0.08461975, + 0.6929088, + 0.30651134, + -0.4974994, + 0.16395596, + 0.2634684, + -0.14254937, + 0.12844166, + 0.015992165, + 0.09394011, + 0.36797953, + -0.11074004, + -0.5706007, + 0.43132216, + 0.7577603, + -0.8736129, + -0.6394519, + 0.2828955, + 0.22421268, + 0.17153203, + -0.49276826, + -0.45501667, + -0.3103023, + -0.0037775058, + 0.24779111, + -0.12055814, + -0.035536226, + 0.10743559, + 0.3593567, + -0.14149944, + 0.5957868, + 0.21506207, + -0.182036, + 0.117405266, + 0.060599074, + 0.32793534, + -0.36560515, + -0.0757536, + -0.51676726, + 0.034155004, + 0.051083386, + -0.4733615, + 0.384401, + -0.10030475, + 0.15185434, + 0.21056244, + -0.4168073, + 0.073315755, + 0.190744, + 0.19549467, + 0.16467535, + 0.42962003, + 0.15194604, + -0.15202369, + -0.33229786, + 0.2745797, + -0.13968235, + -0.19117047, + 0.34084815, + 0.33222732, + -0.29961404, + -0.0719326, + 0.36251134, + 0.40206087, + 0.11657206, + -0.030572949, + 0.061129257, + 0.006069269, + 0.34036732, + -0.9214041, + 0.25454548, + -0.12457685, + 0.5961018, + -0.05635869, + -0.11486925, + -0.3395826, + 0.18727002, + -0.2598338, + 0.41451204, + 0.6440658, + -0.007869851, + -0.4668829, + 0.052549448, + 0.35841185, + -0.8165342, + 0.0001411512, + 0.25710332, + -0.027150609, + -0.35925454, + 0.4726051, + 0.07903178, + 0.35724092, + 0.2781954, + 0.45340464, + 0.5560549, + 0.27448368, + -0.32043767, + -0.18250427, + -0.4511716, + -0.12836972, + 0.09164104, + -0.38447925, + -0.090387724, + -0.072897464, + -0.25012484, + 0.27516618, + -0.31986013, + 0.08820717, + 0.12876004, + 0.18937884, + 0.15644345, + -0.15652326, + -0.39527446, + 0.33317572, + 0.87882274, + 0.2248554, + -0.09328258, + -0.041499548, + -0.010910217, + -0.27961558, + 0.037944, + 0.64704084, + 0.357086, + 0.25669414, + 0.6530471, + -0.24570858, + -0.1655674, + -0.14236602, + 0.15361072, + -0.20235595, + -0.50188607, + 0.35677695, + -0.17273377, + -0.06722525, + 0.101337954, + 0.6369814, + 0.072987966, + -0.39359337, + 0.2998125, + -0.14313696, + 0.46378788, + -0.1206851, + -0.23236516, + 0.11158031, + -0.10499212, + -0.40886712, + -0.17864627, + -0.04458949, + 0.27058226, + 0.5329728, + 0.24569568, + 0.6278155, + -0.074599095, + -0.601643, + -0.07527384, + -0.34544134, + 0.0375455, + 0.058798328, + 0.35477605, + -0.07688232, + 0.30710664, + -0.075573556, + 0.24964158, + 0.36102477, + -0.055690672, + -0.16954239, + -0.20481145, + -0.17589259, + -0.072236665, + -0.041005112, + 0.11832172, + -0.037613764, + 0.33557138, + -0.6735503, + 0.28976914, + 0.15663981, + -0.024900129, + -0.2534804, + -0.05183752, + -0.4065746, + -0.3210622, + 0.1629321, + -0.16161339, + -0.41966227, + 0.0040207356, + -0.034227744, + -0.32704943, + 0.13198867, + -0.1669023, + 0.33475432, + -0.15265179, + 0.29567614, + 0.20430979, + 0.4855955, + 0.34293336, + -0.479745, + -0.19132362, + -0.11631518, + -0.75684476, + -0.5387814, + -0.3461076, + -0.30126983 + ], + "2025-05-19T19:18:36.835476", + "2025-05-19T19:18:36.835476", + -130.6657867432, + -5.6428070068, + -29.6639633179, + "0", + "ID: 10153438
Cluster: 0
Chunk: Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukture..." + ], + [ + 11686, + "Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.csv\n[xData,yData] = np.loadtxt('DataSinus2.csv',delimiter=';\u2019)\nModellierung der Daten mit einer Funktion aus der Modellklasse\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit 4 freien Parametern a = ( a , a , a , a ).\n\nWas sind die besten Werte f\u00fcr a?\n\n1 2 3 4\nAnsatz mit der Summe der kleinsten Quadrate (Gauss, 17xx):\n\uf0e0 Tafel\n\uf0e0 Optimierungs-Problem mit 4 Design-Variablen\nMin S( a , a , a , a )\n1 2 3 4\nWie wir so was l\u00f6sen ist der Inhalt dieses Kapitels.\n\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nReellwertiges unrestringiertes Optimierungs-Problem mit N Design-Variablen (N Dimensionen)\nMin f(x), x in RN\nMin f(x x x ), (x x x ) in RN\n1 , 2 , ...., N 1 , 2 , ...., N\nBemerkungen:\n1.\n\nAbleitung f\u2019(x) \uf0e0 Gradient gradf(x)\n2.\n\nAbleitung f\u2019\u2019(x) \uf0e0 Hesse-Matrix H(x)\nf(x) ist konvex, falls H(x) positiv definit (alle Eigenwerte positiv) ist.\n\n\uf0e0 Es existiert kein oder genau ein lokales Minimum.\n\nSei f(x) 2-mal differenzierbar, dann gilt f\u00fcr lokale Minima an der Stelle x*:\ngradf(x*) = 0\nH(x*) positiv definit (alle Eigenwerte positiv).\n\nBemerkung: Die Definitheit der Hesse-Matrix m\u00fcssen Sie (noch) nicht selber berechnen k\u00f6nnen.\n\n27.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Himmelblau-Funktion\nMin f(x x )\n1 , 2\nmit (x 2+ x -11) 2 + (x + x 2 -7) 2.\n\n1 2 1 2\n4 lokale Minima:\n\uf0e0 \u00dcbung\n37.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Rosenbrock-Funktion\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n1 , 2 1 2 1\nL\u00f6sung f(1,1) = 0.\n\n\uf0e0 \u00dcbung\n47.\n\nReelwertige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\uf0e0 Tafel\nBeispiel:\n1.", + 18240, + 7444022, + null, + "md", + null, + [ + -0.8677129, + 0.38449863, + 0.5034417, + -0.103949405, + -0.37239298, + -0.27794132, + 0.391599, + -0.10016646, + -0.023383643, + -0.031077437, + -0.52423716, + -0.08872123, + 0.30995914, + 0.6822999, + -0.119418964, + 0.09067443, + 0.016116112, + 0.6925044, + 0.024169125, + -0.37904954, + -0.22198641, + -0.31751263, + 0.48463133, + 0.5453157, + 0.35345456, + 0.7434466, + 0.1971786, + 0.27662086, + 0.31977284, + 0.11300657, + 0.38406906, + -0.32944775, + -0.46555632, + -0.26303253, + -0.2412845, + -0.16615452, + -0.09764955, + 0.138378, + -0.27564964, + 0.7271903, + -1.0877059, + 0.44274616, + 0.37875715, + -0.11933943, + 0.07187103, + -0.6586425, + 0.035883073, + -1.042075, + -0.15784395, + 0.053753465, + -0.031198114, + -0.103145376, + -0.15183139, + -0.59188896, + 0.10971694, + -0.27303588, + -0.40526977, + -0.0869248, + -0.05297426, + -0.25260413, + 0.04365085, + -0.23578796, + -0.7966782, + 0.09036963, + 0.452434, + 0.24238236, + 0.28812692, + -0.20868042, + 0.29509905, + -0.12493083, + -0.3010679, + 0.50919765, + -0.42243803, + -0.41971892, + -0.93814427, + -0.23934957, + -0.43682522, + 0.6736841, + 0.09638877, + 0.4810211, + 0.18408929, + -0.53635347, + -0.22674835, + 0.101652205, + 0.14880627, + -0.31925437, + 0.8440288, + -0.12864676, + 0.061375417, + -0.30611688, + -0.098939754, + 0.12083363, + -0.18445729, + 0.1351458, + 0.53739446, + 0.2281075, + 0.17733218, + -0.40644616, + 0.36716953, + -0.016572032, + 0.17759605, + 0.065675505, + 0.29980537, + -0.64304966, + 0.028423548, + -0.008231394, + -0.12983397, + -0.2820076, + -0.35806096, + 0.44388634, + 0.62119794, + -0.75148696, + -0.29382035, + 0.14242853, + -0.24385549, + -0.6800736, + -0.3454406, + -0.20770605, + -0.2042584, + 0.14490873, + -0.080112845, + 0.27112952, + -0.23611274, + -0.2161046, + 0.19382887, + 0.09770059, + 0.31514162, + 0.774359, + -0.23147704, + -0.003095895, + -0.15588859, + 0.29996982, + 0.42214027, + -0.09385395, + 0.46597993, + 0.5464366, + -0.038051672, + 0.0030920692, + 0.1990273, + -0.681958, + 0.16675544, + 0.34496507, + -0.22195175, + -0.32797444, + 0.109007716, + 0.21384503, + 0.03738403, + 0.05435601, + 0.15479521, + -0.29673594, + -0.09295349, + 0.18050678, + 0.027905606, + 0.07845414, + -0.29401833, + -0.14570965, + 0.3295235, + -0.24244596, + -0.13325219, + 0.012187282, + -0.103971034, + -0.06908074, + -0.84419745, + 0.34697175, + -0.23199153, + 0.24222499, + -0.5815965, + 0.28281265, + 0.71487343, + 0.1252636, + -0.1227448, + -0.09130621, + -0.168206, + -0.07549646, + 0.14523718, + 1.6633526, + 0.1610722, + -0.7115796, + 0.19960459, + -0.04375214, + -0.02838863, + 0.25009215, + -0.50758046, + -0.2598561, + 0.30307338, + 0.30086303, + 0.27397737, + -0.45196956, + -0.10006909, + 0.2792545, + -0.023812154, + -0.35895404, + -0.54393876, + -0.19758372, + 0.32256964, + 0.09416733, + -0.2528673, + 0.0778212, + -0.2748389, + -0.06915656, + 0.37298128, + -0.48562604, + 0.0060008327, + -0.40627667, + -0.3575734, + -0.27067968, + -0.06875092, + -0.14482649, + 0.060018558, + -0.36958233, + 0.49518332, + -0.3162845, + 0.09303108, + -0.20803663, + -0.18165958, + 0.5659846, + -0.48165172, + -0.102702856, + -0.42841363, + -0.3648612, + 0.3442935, + -0.46712753, + -0.59087294, + 0.049332406, + 0.17716768, + 0.16116758, + -0.83777755, + 0.28441545, + 0.37038293, + 0.71866536, + 0.51192796, + 0.093074724, + 0.051387366, + -0.38548055, + 0.18472138, + -0.017110698, + 0.1538242, + 0.14527044, + 0.31607857, + -0.16547666, + 0.68981576, + 0.5073639, + -0.18169786, + 0.4614051, + 0.37481943, + -0.052386027, + -0.024014503, + 0.15356691, + -0.18409531, + 0.75584877, + -0.09637005, + -0.736194, + 0.015269533, + 0.053498026, + 0.05985881, + -0.37694034, + -0.045637425, + -0.014637537, + -0.27062765, + -0.29781878, + -0.5737223, + -0.009884398, + 0.33445743, + 0.47960562, + -0.17302854, + 0.7136193, + 0.54339045, + -0.006606519, + 0.26491672, + 0.31028005, + -0.25991896, + -0.15360041, + 0.31963262, + -0.22841227, + 0.66674244, + -0.36413848, + -0.78559417, + -0.077981025, + -0.35983363, + -0.4534709, + 0.09522638, + 0.19765519, + -0.23908812, + -0.20034929, + 0.30460328, + 0.17641485, + -0.25683525, + 0.015473574, + 0.06362705, + 0.3641251, + 0.06619412, + 0.14222832, + 1.1262512, + 0.10304833, + -0.35582897, + 0.6465648, + -0.09623715, + -0.034866333, + -0.18480788, + -0.3312717, + 0.46756756, + 0.37822342, + 0.6008807, + 0.049791206, + -0.36018905, + -0.016300328, + -0.059023544, + 0.28188148, + -0.73611987, + 0.40895593, + 0.169596, + -0.23356524, + 0.3284422, + -0.669259, + -0.018203467, + 0.4982425, + 0.011358835, + 0.29135782, + 0.48597714, + 0.044430777, + -0.68159646, + 1.306906, + 0.19303651, + -0.5479763, + -0.29159304, + -0.009169091, + -0.0001710318, + -0.47501424, + -0.7192249, + 0.065791115, + -0.17551464, + -0.2464306, + 0.21572736, + 0.815026, + 0.64819217, + 0.1574907, + -0.37782452, + 0.26763934, + -0.7702413, + -0.5461974, + -0.25644982, + 0.3952051, + -0.20841339, + 0.57553196, + -0.0586333, + -0.6636062, + -0.15291402, + -0.3240711, + -0.3628856, + -0.1823779, + 0.012059867, + -0.048033316, + 0.4499089, + -0.06053359, + -0.29176453, + 0.5130901, + 0.14416158, + -0.110812366, + -0.73263246, + 0.37775844, + 0.10316746, + -0.31787303, + 0.096167475, + -0.09379882, + 0.5288756, + -0.4892546, + -0.031770237, + 0.14766121, + -0.76784116, + 0.25138813, + 0.6208266, + -0.6818288, + -0.056409694, + 0.462582, + -0.4022105, + 0.34568053, + -0.7380424, + 0.6711152, + -0.24993435, + -0.01905682, + 0.91082776, + -0.17760576, + -0.28174835, + 0.023053562, + -0.65945476, + 0.6019287, + 1.5996196, + 0.25297853, + 0.21260265, + -0.381912, + -0.74125075, + -0.093818076, + -0.23531258, + 0.0071410164, + -0.24285987, + -0.019667689, + 0.5657288, + 0.69840294, + 0.2814387, + -0.5541072, + 0.15680724, + 0.4012352, + -0.19089532, + -0.0026431158, + -0.15500891, + -0.23506105, + -0.07436065, + 0.46535337, + -0.091493234, + 0.037556052, + 0.005591914, + 0.3419546, + 0.28339228, + -0.21983847, + 0.32518375, + 0.13626593, + -0.24531695, + 0.17158146, + 0.10525578, + 0.23198134, + 0.26012948, + 0.53322047, + -0.9648679, + 0.90402687, + 0.039599337, + -0.43984714, + -0.378577, + 0.6017511, + -0.23190522, + 0.1312438, + 0.34893507, + 0.076806605, + -0.051398624, + 0.19090651, + -0.39541277, + -0.22934592, + 0.52820617, + -0.29334238, + -0.11541413, + -0.04223468, + -0.041821554, + 0.0034344627, + 0.2462338, + -0.11726464, + 0.50051326, + -0.8151443, + -0.4832029, + 0.6653512, + -0.12973036, + 0.5524119, + -0.50332665, + 0.30068585, + -0.034295138, + -0.23812892, + 0.09758387, + -0.045340076, + -0.6871018, + 0.39823443, + 0.5138103, + -0.5840707, + 0.015899941, + 0.11490649, + 0.07205135, + -0.3296798, + 0.19743356, + -0.9364305, + 0.06340994, + -0.042909876, + 0.013973061, + -0.24161068, + 0.10627599, + -0.009756349, + -0.27846095, + 0.09640506, + -0.35589784, + 0.077770665, + -0.011339266, + 0.013920005, + -0.43086788, + 0.17021142, + 0.30862954, + 0.22162254, + 0.4477195, + 0.064791575, + 0.45378208, + -0.4040275, + -0.52942157, + 0.14406, + -0.6026994, + -0.5591655, + 0.46440226, + -0.43011835, + 0.32298824, + 0.29451442, + 0.65272284, + -0.221356, + -0.43158746, + 0.4219503, + 0.4975808, + 0.17689916, + -0.30817658, + -0.30384213, + 0.95060647, + -0.23652042, + -0.30024755, + -0.07645939, + 0.0733212, + 0.16238865, + -0.18126218, + -0.2966465, + 0.16946591, + -0.43085986, + -0.29835203, + 0.32510453, + 0.39320734, + 0.15220177, + 0.17522997, + 0.65690917, + -0.20209219, + -0.10321963, + 0.19027215, + 0.18424836, + -0.73269117, + 0.2898218, + -0.37705627, + 0.51666987, + 0.7672682, + -0.64380807, + 0.30989614, + 0.51319575, + -0.32414466, + 0.21376249, + 0.083515674, + -0.22867873, + -0.18729015, + 0.14172065, + -0.38412035, + 0.10191991, + -0.10710148, + -0.05246751, + -0.21779926, + 0.07429393, + -0.12470798, + 0.38702637, + -0.18808863, + -0.18495947, + 0.5583241, + 0.124198265, + 0.15450348, + -0.09098953, + 0.007678151, + 0.57476836, + 0.41003406, + -0.24130413, + 0.13162845, + -0.1277788, + 0.23713018, + -0.17239177, + 0.23606801, + 0.3333812, + 0.51908827, + -0.70675296, + 0.23831646, + -0.25382963, + 0.4951212, + -0.009558823, + -0.6993225, + 0.035746865, + 0.20331752, + 0.08372225, + -0.3498374, + -0.4089707, + -0.196937, + -0.44820562, + 0.39827922, + 0.0036188187, + 0.21423906, + -0.1814257, + 0.53104657, + 0.08921651, + -1.0334971, + 0.4518866, + -0.14956109, + 0.004806474, + 0.27276465, + -0.30744827, + -0.40481853, + -0.28853542, + -0.14925465, + 0.22222932, + 0.07904996, + -0.3883312, + -0.3581035, + 0.44300574, + 0.03373395, + 0.27324477, + 0.11624448, + 0.11493146, + -0.5149105, + -0.052048173, + 0.060577117, + -0.21792203, + -0.14050321, + -0.5332819, + -0.010245204, + 0.14973362, + 0.2569172, + -0.107157245, + 0.0024622157, + 0.32707268, + -0.4417266, + -0.026580062, + 0.14463358, + -0.089791134, + -0.09782401, + -0.71642166, + 0.09287296, + -0.77060926, + -0.19709383, + -0.9194681, + -0.1525639, + 0.11933191, + -0.30900234, + 0.056231417, + -0.11771465, + -0.2341075, + -0.25086987, + -0.010427795, + 0.5463162, + -0.015200205, + 0.6907332, + 0.1251505, + -0.15353295, + 0.93630445, + -0.039746102, + 0.09907111, + 0.1975646, + 0.04889652, + -0.1433468, + 0.3049885, + 0.060058147, + -0.023704857, + 0.17339277, + 0.48334795, + -0.30187047, + 0.12775701, + 0.22413976, + -0.53795075, + -0.38364974, + -0.17576103, + 0.12658387, + -0.114055455, + -0.07828965, + 0.5668642, + 0.06426323, + 0.22402683, + -0.6582414, + 0.06911688, + 0.83234197, + -0.5209273, + 0.2633744, + -0.6817556, + 0.3021385, + -0.17187938, + -0.32426077, + -0.096244305, + -0.018647477, + -0.25529093, + 0.30987966, + -0.095037945, + -0.35419542, + -0.27126974, + 1.0650063, + -0.26310295, + -0.08838308, + -1.0539042, + -0.24714902, + -0.11333246, + -1.0921423, + -0.42081082, + -0.15082797, + 0.028857294, + 0.033628143, + -0.21495612, + -0.2926299, + 0.1364038, + -0.030147232, + -0.20777914, + -0.5498395, + 0.50716555, + -0.3051731, + -0.10668424, + -0.5117071, + 0.12857714, + -0.88723874, + 0.25836244, + -0.18638407, + -0.24000427, + -0.044420496, + 0.49543738, + -0.7401626, + -0.31390744, + -0.5273016, + 0.55183375, + -0.015544508, + 0.19205777, + -0.010901431, + -0.099134326, + -0.48734608, + 0.80785024, + 0.022555793, + -0.27516332, + -0.29016322, + -0.35983434, + -0.027943376, + 0.10598241, + -0.09317787, + 0.19764309, + -0.17613566, + 0.048859157, + -0.25866, + -0.22007926, + 1.6601874, + -0.40900025, + 0.06020231, + -0.79781055, + 0.4681639, + -0.64713144, + 0.3598972, + -0.21131645, + 0.05815424, + -0.12314162, + -0.2858745, + 0.030169833, + -0.052484076, + -0.18478534, + 0.44099146, + -0.05709669, + 0.5503408, + 0.33285037, + -0.100567885, + 0.11988016, + 0.5661539, + -0.091002785, + -0.31044957, + 0.32355103, + -0.14730209, + -0.06930457, + -0.36410898, + 0.038085222, + -0.20999917, + -0.20859714, + 0.43130717, + -0.3971459, + 0.57021314, + 0.7151627, + 0.119030416, + 0.5034935, + 0.12971756, + -0.65661633, + -0.2685146, + -0.09698045, + 0.23475562, + 0.15049213, + 0.18724608, + -0.63479304, + 0.2627019, + -0.036174, + 0.48992413, + -0.49662024, + 0.20204961, + -0.014105301, + 0.5137299, + 0.07478692, + -0.27245393, + 0.49982172, + 0.87719613, + 0.40007007, + 0.011821356, + -0.12646848, + 0.21478756, + -0.02822202, + -0.6973522, + 0.46360746, + 0.486054, + 0.4324904, + 0.27049655, + -0.44782555, + 0.014330321, + 0.018207435, + 0.4861571, + -0.7922483, + -0.23233037, + -0.17783, + -0.17224686, + 0.25534725, + -0.34727436, + 0.40245464, + -0.303128, + -0.5797468, + -0.4945861, + 0.11900437, + 0.13080852, + -0.17568514, + 0.2759526, + -0.2915841, + -0.5327422, + -0.28053755, + 0.1247416, + -0.12488551, + 0.106467314, + 0.6328517, + 0.0077252686, + -0.2882198, + -0.32981363, + -0.17046352, + 0.09089766, + -0.15793027, + -0.12152904, + -0.17923546, + 0.13696058, + -0.12376932, + 0.23383996, + -0.12104483, + -0.36869413, + 0.55508417, + -0.03155939, + -1.1426764, + 0.101138234, + 0.29512116, + -0.08330268, + -0.37315777, + 0.038596496, + -0.45735112, + 0.4180167, + 0.99079037, + 0.83949685, + 0.33343226, + -0.009520985, + 0.6837219, + -0.36060882, + 0.4666746, + -0.13402303, + 0.44551027, + 0.38262567, + -0.28743887, + 0.4357034, + 0.06777623, + 0.065609604, + -0.23476627, + 0.8006793, + -0.10427764, + -0.13857622, + 0.23675565, + 0.26692772, + 0.060788624, + -0.17342782, + 0.12369254, + -0.32422072, + -0.25411233, + 0.20705137, + 0.041171245, + 0.9314698, + -0.16665624, + 0.11859638, + 0.45394987, + 0.22712448, + 0.3175522, + 0.2490424, + -0.3943425, + 0.2811667, + -0.017043853, + -0.28900692, + 0.16817608, + -0.1258317, + -0.065623716, + 0.0031274687, + 0.34097397, + 0.12076603, + 0.48703513, + 0.11692874, + 0.56269574, + -0.19112752, + -0.07311919, + 0.34374535, + -0.040866055, + 0.20982659, + 0.2763463, + -0.006103985, + -0.40376616, + 0.3670152, + -0.5602858, + 0.9546139, + 0.24567378, + 0.75674933, + 0.41949448, + -0.18829748, + -0.27252668, + -0.11446302, + 0.4484549, + 0.11535596, + 0.20224635, + -0.19448619, + -0.10065386, + 0.61145556, + -0.7360385, + -0.16137218, + -0.04779306, + 0.42038906, + 0.08639246, + -0.006755911, + 0.019409262, + -0.052430686, + 0.37743998, + -0.36329162, + -0.06088482, + 0.098424226, + 0.38755405, + 0.243746, + 0.16758263, + 0.22376105, + 0.04662345, + 0.4879437, + -0.096337944, + -0.41966712, + 0.24392587, + 0.079770096, + 0.031241484, + -0.07760427, + 0.27184457, + 0.30734983, + -0.22552514, + 0.060828116, + 0.1243669, + -0.5601942, + -0.027629115, + 0.27261627, + -0.27021277, + -0.11564485, + 0.06401227, + 0.22415261, + 0.04336218, + -0.011539176, + 0.77503246, + -0.22952406, + 0.29445598, + -0.20714317, + -0.06420124, + 0.13948661, + 0.22448975, + 0.2460634, + 0.5684196, + -0.46527392, + -0.27436405, + -0.13764127, + -0.69873625, + -0.28596783, + -0.29815343, + 0.19255164, + -0.36637872, + -0.3342491, + -0.4475326, + -0.42297924, + -0.14556545, + -0.14411473, + 0.033119533, + 0.20289685, + -0.13487886, + -0.16560218, + -0.046975326, + -0.19783111, + 0.91271216, + 0.061233066, + 0.039050132, + 0.7062236, + -0.22068395, + 0.062226884, + -0.26614362, + 0.29025498, + 0.54727256, + 0.20800003, + 0.25057772, + -0.17716455, + -0.29180112, + -0.088015646, + -0.18260396, + 0.25123534, + -0.2203457, + -0.14444835, + -0.47816253, + 0.14692993, + -0.014917048, + -0.017207861, + -0.11796917, + 0.21907195, + 0.674954, + 0.91696775, + 0.22635794, + -1.0598922, + -0.14739317, + 0.17613263, + 0.064032555, + -0.3697747, + -0.1002355, + -0.52560043, + -0.5298556, + -0.44263285, + -0.2334311, + -0.57108986, + 0.6232847, + 0.23685874, + 0.31788102, + -0.26660678, + -0.03228607, + -0.26121047, + -0.13510889, + 0.013088558, + 0.14346528, + -0.07527533, + 0.0029917061, + -0.07595745, + -0.14442702, + -0.28940168, + 0.039200053 + ], + "2025-05-19T19:18:56.025495", + "2025-05-19T19:18:56.025495", + -10.7878484726, + -120.8395004272, + -2.1933634281, + "5", + "ID: 7444022
Cluster: 5
Chunk: Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.cs..." + ], + [ + 11687, + "ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\n\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\n\n\uf0e0 Tafel\nBeispiel:\n1.\n\nN=2, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1002 * 0.001 s = 105 s = 10 s\n2.N=4, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1004 * 0.001 s = 105 s = 1.2 Tage\n3.\n\nN=10, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 10010 * 0.001 s = 1017 s = 3.2 Mrd.\n\nJahre (zum Vergleich: Alter des Sonnensystems ca.\n\n13 Mrd.\n\nJ.)\n57.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nheisst auch Downhill-Simplex-Algorithmus. \u00ab\n\nL\u00f6st\u00bb das unrestringierte N-dimensionale reelwertige Optimierungsproblem:\nMin f(x), x in RN\nNelder, Mead (1965)\nBemerkungen:\n\uf0fc f(x) muss stetig sein.\n\n\uf0fc Verwendung in der Praxis f\u00fcr 2 \u2264 N \u2264 10.\n\nF\u00fcr N gr\u00f6sser 10 zu in-effizient.\n\n\uf0fc Vorteil: gradienten-frei\n67.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIdee des Downhill Simplex-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n97.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nf\nGegeben: Simplex S mit n+1 Ecken, x x\n1, \u2026 n+1\nf\nn+1\n1.\n\nWerte f aus und sortiere f(x ) < f(x )< \u2026 < f(x )\nf\n1 2 n+1 n\n2.\n\nBerechne Zentrum der n besten Punkte\n1 n\n\u2211\nx = x\ni\nn\ni=1\nf\n2\nf\n1\n3.\n\nF\u00fchre genau eine Operation\nReflection, Expansion, Contraction oder Shrink\ndurch7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nReflection Spiegele x an Schwerpunkt\nn+1\nf\nf\nn+1\nf\nn\nf\nr\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.", + 18240, + 7260651, + null, + "md", + null, + [ + -0.111103505, + 0.27513874, + -0.024644863, + 0.24044713, + -0.5872487, + 0.96111953, + 0.5122346, + -0.691302, + 0.4659692, + -0.34453544, + 0.18847531, + 0.4933645, + 0.34522104, + 0.5350193, + -0.28161824, + -0.20311373, + 0.117067285, + 0.32576823, + 0.8590197, + -1.1533606, + -0.5475748, + 0.09159811, + -0.13058528, + 0.8629452, + -0.4752931, + 1.0980564, + -0.7857408, + -0.7443192, + 0.06946849, + 0.14316306, + -0.3906342, + -0.31901464, + 0.43394494, + 0.14482668, + 0.700349, + -0.54046154, + 0.012027979, + -0.58589554, + -0.3636956, + 0.8074849, + -0.035246238, + 0.72193784, + 0.94637287, + -0.057660397, + -0.4818987, + -0.9459685, + 0.426641, + -0.24073225, + 0.03905911, + -0.36202306, + 0.29927018, + 0.088483244, + -0.08668699, + 0.055998337, + 0.42429233, + -0.3236404, + -1.1022325, + 0.25999793, + 1.0156186, + -0.66572064, + 0.79095066, + 0.85066855, + 0.18490672, + -0.22072513, + 0.1323617, + -0.16773237, + 0.36906183, + 0.19604814, + -0.06260884, + -0.3321613, + 0.10563393, + 0.51765144, + 0.7490975, + -0.59431475, + -0.47855702, + 0.10457966, + -0.48816273, + 0.22187151, + -0.8715787, + -0.3724749, + 0.4578017, + -0.7814159, + -0.9229843, + -0.59723794, + 0.0002293736, + 0.028854638, + 0.09282501, + 1.3887057, + 0.84512675, + -0.050068732, + -0.5564005, + 0.682424, + -0.08815394, + 0.26165316, + 0.25687027, + 0.12179883, + -0.99874926, + -0.103874505, + 0.72895336, + -0.91126186, + -0.9387794, + 1.1880856, + 0.50154924, + 0.013785372, + 1.0249671, + 0.36208433, + -0.10396211, + -0.0457477, + -0.4055858, + 0.5168971, + 1.5805696, + -0.8802564, + -0.14466336, + 0.6394254, + 0.22152507, + -0.2024416, + -0.21186781, + -0.03292136, + -0.39956343, + -0.12666447, + 0.07643421, + -0.036094476, + -0.054207478, + 0.5138226, + -0.089957446, + 0.48573306, + 0.36451548, + 0.09347132, + -0.044246733, + 0.12626766, + -0.4592264, + 0.25616217, + 0.33580655, + -0.08436628, + 0.2341425, + 0.07892809, + 0.43948466, + 0.07494567, + 1.0932099, + -0.75778556, + 0.008485034, + -0.42240974, + -0.10131782, + 0.13727348, + 0.43647254, + -0.87970406, + -0.22031127, + 0.1567729, + -0.23334907, + -0.09363353, + -0.4460211, + 0.9268179, + -0.28864062, + 0.47182885, + -0.23156954, + -0.08258574, + -0.2297994, + 0.6313963, + 0.13538572, + -0.20187603, + 0.56571424, + 0.7696759, + -0.79431266, + 0.4368948, + 0.11663019, + 0.31233326, + -0.7808127, + 0.65855443, + 0.33996543, + -1.0816233, + 0.37587687, + 0.17600775, + -0.027381213, + -0.8050063, + 0.075424366, + -0.0944002, + 0.46170932, + -1.4345493, + -0.17174888, + 0.11595002, + 0.11734462, + -0.08649758, + 0.042943537, + -0.4136205, + -0.34495184, + -0.112821415, + 0.012079194, + -0.9948861, + 0.1455456, + 0.3224971, + -0.838207, + -0.41613775, + 0.22038084, + 0.18594383, + 0.08062419, + 0.09912556, + 0.21418181, + -0.25426927, + -0.048820205, + -0.21197182, + 0.3159074, + -0.5884119, + -0.714033, + -1.2869436, + -0.6248693, + -0.5181365, + -0.47227705, + -0.35181612, + -0.2769961, + 0.3927185, + 0.355436, + -0.32014567, + 0.62374175, + -0.08132502, + -0.22721554, + 0.4471583, + -0.51848024, + 0.69487345, + 0.08193269, + -0.5959471, + 0.82512075, + 0.37399212, + -0.4122986, + 0.3709541, + 0.59104633, + -0.26228833, + -0.15789132, + 0.13319911, + -0.18717168, + -0.5580197, + -1.3270024, + -0.061014783, + 0.10295247, + -0.6488412, + -0.5247181, + 0.40249223, + 0.7034552, + 0.161921, + -0.4465979, + -0.25231922, + 1.0237045, + 0.76769423, + -0.039782755, + 0.1345142, + -0.110646114, + 0.808237, + 0.3578712, + -0.016908715, + 0.63694566, + -0.10237393, + 0.5100039, + -1.1320575, + -0.15405145, + 0.55621725, + 0.34114808, + 0.19462669, + -0.537485, + 0.007924255, + -0.27668393, + -0.48333675, + -0.18667546, + -0.030508062, + 0.5933113, + 0.03505519, + -0.23555303, + 1.0915833, + 0.655474, + 0.38349566, + 0.47142327, + 0.068409085, + -0.9420821, + -0.025948428, + 0.60271084, + 0.7015291, + -0.193768, + -0.6951846, + -0.41930506, + 0.051698502, + 0.43035975, + -0.89585525, + 0.5124298, + 0.36304015, + -0.011570685, + -0.7391132, + 0.08929592, + 0.4280096, + -0.23404665, + 0.79324025, + -0.10045307, + -0.57632047, + 0.32095897, + 0.71927845, + 0.3354652, + -0.021794502, + -0.5543609, + 0.5242351, + -0.03775347, + 0.07995963, + 0.012083363, + -0.23903735, + 0.2229585, + 1.0891969, + 0.495704, + -0.05498652, + -0.40807894, + 0.4144634, + 0.18687233, + -1.2180426, + -1.5505884, + 0.05171182, + -0.9760338, + -0.3037802, + 0.40043652, + -0.56378835, + -0.18162555, + 0.7487339, + 0.560404, + 0.11396188, + -0.7252657, + -0.31714815, + -0.43304414, + -0.081456356, + -0.06382024, + 0.02835361, + 0.06777045, + -0.070991576, + 0.5104266, + 0.7211153, + -0.9488608, + 0.21074845, + -0.47275192, + -0.11413671, + 0.38119623, + 0.34813884, + -0.29709485, + -0.4920573, + -0.042452518, + -0.4262495, + -0.55864996, + -0.17805405, + 0.55174017, + -0.06688657, + -0.12160823, + 0.61375433, + -0.18305051, + -0.50741416, + 0.17944479, + -0.51181185, + -0.053172447, + 0.17886919, + -0.01245746, + 0.0070878407, + 0.5851314, + -0.1356974, + -0.4999472, + -0.24755754, + 0.15359773, + 0.11994307, + 0.37006885, + -0.038463168, + -0.24159612, + 0.16281801, + -0.40004233, + -0.35415307, + 0.10222867, + -0.046205185, + -0.25784802, + 0.5614276, + -0.9645758, + -0.2809586, + 0.32078394, + -0.0749781, + 0.28580934, + 0.3338579, + -0.36147505, + -0.48729536, + -0.8086256, + 0.60817826, + 0.310529, + 0.4599108, + -0.07991015, + -0.702847, + 0.40568614, + -0.33161813, + -0.3716765, + 0.3647025, + 2.9748442, + -0.3952489, + 0.26261204, + 0.42334056, + -0.45267507, + 0.89111656, + 0.3661742, + 1.1172862, + 0.68772805, + 0.022004753, + -0.38454646, + 0.7646128, + 0.20917167, + 0.15355466, + -0.31120378, + 0.6396636, + 0.6201887, + -0.53555256, + -0.54368997, + -0.47423518, + -0.41210055, + -0.21904063, + 0.13756347, + -0.45177162, + -0.1152295, + 0.065203205, + 0.42022583, + 0.3145579, + 0.30657482, + 0.17632772, + -0.5554069, + 0.23075914, + 0.05452285, + -0.7468393, + -0.36198643, + 0.13968168, + -0.6627295, + 0.961686, + 0.8125547, + -0.9367206, + -0.70934045, + 0.050942384, + -0.32744753, + 0.33023253, + 0.20379153, + 0.3150789, + -0.22577809, + 0.09218831, + -0.80333424, + -0.2501386, + -0.067270204, + 0.26579538, + 0.15487751, + -0.21921924, + -0.48642048, + -0.32614827, + -0.36018318, + -0.016053572, + 0.027089199, + -0.28815073, + -0.8489457, + 1.0214415, + -0.46073967, + 0.74028146, + -0.2664925, + 0.066440955, + -0.58721673, + 0.3673155, + -0.39492494, + -0.27162844, + -0.35672665, + -0.85503256, + 0.05167231, + -0.6895161, + -0.24551593, + 0.6713097, + 0.24063185, + -0.5107864, + -0.046176463, + -0.95793366, + -0.3421333, + 0.08986901, + -0.11543996, + -0.4736241, + -0.38773024, + -0.14224201, + -0.86674744, + 0.5920319, + 0.23456553, + -0.52478987, + 0.33035666, + 0.1772874, + -0.56391424, + -0.60189813, + 0.97415394, + 0.32953393, + 0.3214268, + 0.08850762, + 0.39711213, + -0.3592718, + -0.13396376, + 0.38782662, + 0.4652648, + 0.7007868, + 0.042547155, + -1.1681812, + -0.24866045, + 0.7259105, + 0.3241511, + -0.41217786, + -0.32034034, + 0.46830353, + 1.1287615, + 0.28533265, + -0.36432672, + -0.31784132, + 0.22098413, + 0.24915783, + 0.09736562, + -0.37759212, + 0.19902971, + -0.22928101, + 0.28984165, + -0.0589881, + -0.4733395, + 0.46251458, + 0.0604925, + 0.5746146, + -0.53436404, + -0.025396012, + 0.18842962, + 0.41245246, + 0.16736762, + -0.26962253, + 0.4324962, + -0.011708945, + 0.016094461, + 0.12004466, + -0.6489511, + 0.34794846, + -0.41124472, + -0.06525555, + 1.3509516, + 0.62207395, + -0.77945566, + 0.19267808, + 0.14328575, + 0.030636221, + 0.3132994, + -0.013791084, + 0.022155397, + -0.31345662, + -0.45673, + 0.031116193, + 0.68300605, + 0.12988457, + -0.15736637, + 0.6000634, + 0.6133349, + -0.05278196, + 0.73255044, + -0.17993651, + 0.33283377, + 0.03373146, + -0.45094982, + 0.641531, + -0.3847131, + -0.43559074, + -0.31925493, + -0.41381937, + -0.5533699, + 0.096192464, + 0.77578247, + 0.12860928, + 0.44945496, + 0.09122195, + -0.09380193, + -0.3358431, + 0.26369882, + -0.65607053, + -0.89825696, + -0.650099, + 0.36242664, + 0.10415925, + 0.14594528, + 0.22300613, + 0.23180811, + -0.14569521, + 0.68448967, + 0.42268315, + 0.078757964, + 0.4448853, + 0.008709177, + 0.569099, + -0.50642884, + 0.14235762, + 0.2920045, + -0.51134986, + 0.6209765, + -0.24672975, + 0.066709794, + -1.0924749, + -0.5486658, + 0.29676545, + -0.3599721, + -0.15722497, + -0.9748293, + 0.50239354, + 0.015565846, + -0.027105467, + 0.015691485, + 0.28591728, + -0.92274284, + 0.48143965, + 0.28177106, + -0.2943125, + 0.15014766, + -0.61180305, + -0.039101087, + -0.17833117, + 0.75088453, + 0.22915001, + -0.2963603, + 0.10242849, + -0.49411133, + -0.1937643, + -0.4021331, + 0.020614218, + 0.63140815, + -0.43305993, + 0.011864632, + -0.87174606, + 0.484873, + -0.23944262, + -0.3549228, + 0.5324907, + -0.30308655, + 0.46543452, + -0.22732528, + 0.35132167, + 0.008710377, + -0.3136759, + 0.43014777, + -0.051051095, + 0.76077664, + 0.62521917, + 0.16714628, + 0.48087987, + 0.2246818, + -0.7936071, + 0.0459653, + -0.7359303, + 0.78833586, + 0.049424574, + -0.21980047, + -0.3089095, + 0.13170977, + 0.038841054, + 0.41230497, + 0.36062887, + -0.1145585, + 0.16325636, + -0.12505728, + -0.1027599, + -0.48383874, + 0.3963212, + 0.17195342, + 0.09592244, + 0.3929707, + -0.39715186, + -0.12428647, + 0.17337751, + 0.119276695, + -0.4683249, + 0.15361972, + -0.5753589, + 0.34529248, + -0.097810045, + -0.6680436, + 0.66909486, + 0.10926712, + -0.97443503, + -0.342826, + 0.054116175, + -0.2759097, + -0.5174533, + 0.8924746, + -0.34894788, + 0.3947755, + -0.59445584, + -0.20176253, + -0.61728907, + -1.3091, + 0.2585612, + -0.73047286, + -0.5874695, + 0.074085504, + -0.3090415, + -0.6725921, + -1.0440544, + 0.2873598, + 0.08764071, + 0.3206541, + -0.44613323, + -0.20739298, + 0.10964403, + -0.697805, + -0.7796806, + -0.14790092, + -0.18104888, + -0.2291569, + 0.7097527, + 0.13551697, + 0.851728, + -0.13847868, + -0.07061918, + -0.4193964, + 0.95484537, + -0.21221814, + 0.011289155, + 0.1803058, + 0.28578898, + -0.80952036, + -0.21634088, + 0.90400267, + -0.17104661, + 0.23758747, + 0.46350628, + 0.5848975, + -0.21193385, + -0.15693156, + 0.026802719, + 0.19359723, + -0.040054247, + -0.42420766, + 0.39270288, + 1.307982, + -0.3987843, + 0.22856864, + -0.44749528, + -0.3881203, + -0.43358377, + -0.26132634, + -0.29939568, + -0.067048274, + -0.12927583, + -0.26515996, + -0.8381115, + 0.47909904, + -0.5386146, + 0.58183104, + 0.3897009, + 0.598483, + -0.07220416, + 0.33939022, + -0.25580555, + 0.19725116, + 0.016985238, + -0.1296375, + 0.14856109, + -0.44223762, + 0.611186, + -0.19788206, + 0.37489748, + 0.084126435, + -0.34518945, + -0.1374282, + -0.07375781, + 0.51201534, + 0.073045865, + -0.49421883, + 0.51000375, + 0.2737147, + 0.39289826, + -0.34019494, + -0.23481093, + 0.67178476, + -0.45534083, + 0.19094063, + -0.8995307, + 0.3843858, + 0.38688645, + 0.4037984, + -0.46339068, + -0.3825287, + -0.49469346, + 0.38527587, + 0.23637354, + -0.14438775, + 0.036242127, + -0.093154475, + 0.8836606, + -0.0637092, + -0.43310446, + 0.17801932, + 0.47701663, + 0.60717607, + 0.5189556, + -0.4514712, + 0.6009542, + -0.29310188, + -0.35960847, + -0.27920756, + 0.23385379, + -0.92356706, + -0.6466476, + 0.3324164, + -0.28032663, + -0.04019742, + -0.020887464, + -1.0292075, + -0.3835297, + -0.13331628, + -0.7088312, + 0.7208476, + -0.42078915, + -0.2493612, + -0.46179068, + -0.051152803, + -0.31644797, + -0.080282375, + -0.22929963, + -0.16281244, + -0.46866104, + -0.1321785, + 1.0024394, + -0.28339994, + -0.3735832, + 0.8519941, + 0.23260778, + -0.82505894, + -0.46541128, + 0.66474533, + -0.16400987, + 0.29997143, + -0.13171951, + -0.26965028, + 0.33354992, + -0.04265515, + 0.96792483, + 0.76995426, + -0.69729507, + 0.58111703, + 0.44939312, + -0.4704368, + 0.38059378, + -0.33354205, + 0.61085296, + 0.29436415, + 0.12305767, + 0.38652512, + -0.10922244, + 0.062766165, + 0.06799759, + 0.12592886, + -0.26188043, + -0.31828177, + 0.39112756, + -0.55186516, + -0.12180965, + -0.06802901, + 0.28951266, + 0.27036425, + -0.9669522, + 0.6625137, + 0.20368731, + -0.37509423, + -0.021149363, + -0.2971702, + 0.5526779, + 0.25374824, + 0.019802798, + -0.040675845, + 0.54867506, + 0.8655258, + -0.14293423, + 0.29068395, + 0.6769576, + -0.13677745, + 0.6236632, + -0.043670997, + -0.6485172, + -0.021546904, + -0.25874525, + -0.03280656, + -0.121491894, + 0.38293704, + 0.3779335, + -0.24313456, + -0.21501529, + 0.11329203, + 0.65238136, + -0.2856292, + 0.15647511, + -0.1809639, + -0.2797465, + -0.8547367, + -0.055287696, + 0.26669544, + -0.022467948, + 0.8581355, + 0.093276985, + 0.14246891, + 0.60269, + -0.104020976, + 0.11488925, + 0.032005064, + 0.020657439, + -0.60100466, + 0.03545648, + -0.28662422, + 0.23987952, + 0.24069323, + 0.16043596, + -0.68467116, + 0.63753927, + -0.75376314, + -1.1014379, + 0.3375987, + -0.013411105, + -0.31256872, + 0.29845965, + -0.48849514, + 1.0542948, + 0.1496247, + 0.39092487, + -0.5852823, + 0.7159354, + 0.08468971, + 0.20776066, + -0.57671046, + 0.2605152, + -0.12820251, + 0.8325643, + 0.773895, + 0.11866139, + 0.74138397, + -0.15446594, + 0.33087897, + -0.43027177, + -0.27942532, + 0.252689, + 0.34797257, + 0.5278196, + 0.4883642, + 0.031034244, + -0.007301796, + 0.3851166, + -1.0562998, + -0.23921312, + 1.04016, + -0.7367329, + 0.17804533, + -0.2892001, + 0.5493073, + -0.1645969, + 0.44890723, + 1.42288, + -0.09745307, + -0.13900265, + 0.008992406, + 0.18498786, + -0.016569696, + 0.08389994, + -0.14019741, + 0.1980698, + -0.40118137, + -0.09295742, + 0.17849806, + -0.26338124, + -0.1909554, + 0.84586924, + -0.28328428, + 0.18615334, + 0.04405523, + 0.13021876, + -0.3959357, + -0.88527656, + -0.92220426, + -0.34500936, + -0.21988879, + 0.2536168, + -0.148683, + -0.16075149, + 0.25405475, + 0.5630338, + -0.13210224, + 0.26050103, + 0.8977553, + 0.23955931, + -0.24413103, + 0.14234196, + -0.059094958, + -0.18468696, + -0.37251732, + 0.35191485, + -0.35825267, + 0.009886274, + 0.033352032, + 0.10113228, + 0.55047226, + 0.047114067, + 0.2880586, + -0.72169244, + 0.40345216, + -0.34424016, + -0.9128772, + 0.4157027, + 0.17844501, + -0.3075044, + 1.0709951, + 0.55589753, + -0.27527204, + -0.62813944, + 0.022546098, + -0.15256676, + -0.011338351, + -0.15673074, + -0.001514338, + -0.1812315, + -0.6439006, + 0.20228201, + 0.2671375, + -0.14226034, + -0.08620628, + -0.8838006, + 0.37091896, + -0.84899914, + -0.51137, + -1.3155996, + 0.2691452, + 0.32346132, + -0.48001495, + -0.3687028, + -0.13638173, + -0.2977149, + 0.09158025, + 0.111911945 + ], + "2025-05-19T19:19:11.758146", + "2025-05-19T19:19:11.758146", + 11.9254703522, + -15.3311862946, + -4.2079267502, + "6", + "ID: 7260651
Cluster: 6
Chunk: ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidista..." + ], + [ + 11688, + "Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x ) = (3x 2 - 4 , 2x )\n1 , 2 1 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\nH(x x ) = ( (6x , 0), (0, 2) )\n1 , 2 1\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\nH(x x ) -1 = ( (1\/(6x ), 0), (0, 1\/2) )\n1 , 2 1\n(d) F\u00fchren Sie eine Newton-Iteration durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n(x x ) = (7\/6, 0)\n1,1 , 2,1\n53\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\ngrad f(x x ) = ( 2(1 \u2013 x ) + 200(x - x 2) * (-2x ), 200(x - x 2) ) = ( 2 \u2013 2x - 400x x + 400x 3 , 200x - 200x 2 )\n1 , 2 1 2 1 1 2 1 1 1 2 1 2 1\nf = \u2013 2 - 400x + 1200x 2\n11 2 1\nf = - 400x\n12 1\nf = 200\n22\nH(x x ) = ( (f , f ) , (f , f ) )\n1 , 2 11 12 12 22\nD(x x ) = f * f - f 2\n1 , 2 11 22 12\nH-1(x x ) = ( (f , -f ) , (-f , f ) ) \/ D(x x )\n1 , 2 22 12 12 11 1 , 2\n(b) Stellen Sie damit die Newton-Iterations-Formel auf.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.", + 18240, + 14859415, + null, + "md", + null, + [ + 0.09867265, + 0.110687315, + 0.09900243, + 0.22945201, + -0.027438357, + 0.098105095, + -0.23619112, + 0.27377382, + 0.80790806, + -1.145435, + -0.26627803, + 0.27242467, + 0.25694075, + -0.17047393, + 0.0046548173, + 0.2255554, + -0.007440608, + 0.04724682, + 0.56931907, + -1.3216007, + -0.6276884, + -0.17996022, + 0.6398254, + 0.13847172, + -0.58847064, + -0.06526394, + -0.10131427, + 0.12976587, + 0.8434964, + -0.03662455, + -0.20036188, + 0.28603286, + -1.4435623, + -0.9208557, + -0.0061098896, + -0.22824594, + 0.7398138, + 0.6441138, + -0.042619955, + 0.6896371, + -0.89302886, + 0.020537592, + -0.14137584, + 0.50674224, + 0.71288526, + -0.21917081, + -0.6392732, + -1.0851569, + -0.57332474, + -0.20589787, + 0.39523393, + -0.008719478, + 0.4454067, + 1.352019, + 0.8446945, + -0.36210468, + -0.44550562, + -0.016562834, + -0.21319818, + -0.68944293, + 0.19527213, + 0.36691156, + -1.0501814, + -0.038548496, + 0.059387237, + 0.50824606, + 0.25185212, + 0.51780015, + -0.81442404, + -0.15639305, + -1.5384686, + 0.886126, + 0.8889318, + 0.1941032, + -0.3524245, + 0.28974527, + -0.3919926, + 0.25909588, + -0.71588165, + 0.7518678, + 0.18113251, + -0.5172051, + -0.2135939, + -0.7259023, + -0.22092365, + 0.09246122, + 0.6795689, + -0.0964835, + 0.48404092, + -0.16994947, + 0.25550818, + 0.16290641, + -0.48754448, + 0.90228325, + -0.3905873, + -0.7532856, + 0.052534103, + -0.62905145, + -0.30898964, + 0.597511, + 0.15935259, + 0.9325677, + 0.5468651, + -0.07853602, + -0.7338609, + -0.3720457, + 0.039052363, + 0.09948737, + 0.21655971, + -0.14990564, + 1.0139805, + -0.3625022, + -0.0769975, + -0.22897094, + 0.10361455, + 0.4366969, + -0.5844264, + 0.22067347, + -0.35036597, + -0.3091964, + 0.6309018, + -0.97356504, + 1.0198308, + -0.01332613, + 0.4018996, + 0.4596646, + 1.0029926, + -0.953895, + -0.49996358, + 0.81756604, + -0.047458682, + 0.7188242, + 0.1741947, + -0.33094823, + -0.018873055, + -0.09688342, + 0.5864333, + 0.07713671, + 0.27733165, + -0.8468182, + 0.0058958456, + -0.6351061, + -0.6951874, + -0.44188684, + 0.8392646, + -0.38283327, + 0.5365428, + -0.7132146, + 0.381787, + -0.98611283, + 0.20805097, + -0.30635375, + -0.022463217, + -0.5851508, + 0.011305369, + 1.2283957, + 0.29369527, + 0.55758435, + -0.65065026, + -0.17258045, + 0.026285194, + 1.0469778, + -0.31926504, + -0.93676466, + 0.22036074, + 0.20531648, + -0.18193376, + 0.022729516, + 0.60301185, + -0.62440675, + 0.7517875, + 0.05332236, + -0.63979113, + -0.2312608, + -0.28119862, + 1.0172596, + 0.423002, + -0.60617286, + -0.082288235, + 0.4750282, + 0.29937342, + 0.64687127, + 0.12053876, + -0.7605794, + 0.18441123, + 0.12039928, + -0.43902045, + 0.030971423, + 0.023730263, + 0.5291866, + -0.14559428, + 0.086846314, + -0.6367214, + -0.351496, + 0.77415675, + -0.8972367, + 0.1373828, + -1.1501211, + -0.5072923, + 0.4559797, + 0.8680921, + 0.109660655, + 0.2347815, + -0.39081255, + -0.2860189, + 0.11794658, + -0.35708064, + -0.52179784, + 0.31262854, + 0.64121985, + 0.3992297, + -0.017667111, + 0.13086972, + 0.10269937, + -0.6367594, + 0.74641645, + -0.46381956, + 0.34287623, + 0.22562303, + -0.83569485, + 0.5072873, + 0.15824407, + 0.2516959, + -0.07341275, + -0.055763498, + -0.03743699, + -0.41779023, + 0.37540737, + -0.122679844, + 0.16157515, + -1.3832797, + -0.2555948, + 0.6092596, + -0.18214805, + -0.09976715, + 0.72257966, + 0.5831122, + 0.32459548, + 0.30583316, + 0.6776415, + -0.072715156, + -0.16565916, + 0.25940114, + -0.09497604, + -0.031302974, + 0.24850427, + -0.28234887, + 1.087359, + 0.041934676, + 1.1430496, + 0.36711502, + -0.2118273, + 0.19471383, + 0.57132405, + 0.40106648, + 0.25625247, + -0.10451258, + -0.5140797, + -1.0416801, + -0.8525772, + -0.34237617, + -0.30827492, + 0.36429378, + 0.20208435, + -0.32087877, + 0.72047895, + 0.29676986, + 0.060800962, + -0.057341106, + 0.15027753, + 0.12746187, + -0.29868138, + 0.7273164, + 0.42307875, + 0.060233243, + 0.07040104, + 0.1956526, + 0.20226702, + -0.3010223, + -0.7040386, + 0.59733295, + -0.5988953, + -0.61916137, + -0.59246016, + -0.21354197, + -0.082070306, + 0.062992066, + 0.1869354, + 0.9035603, + -0.45357558, + -0.19496956, + -0.7579504, + -0.42571357, + 0.2326057, + 0.16807349, + -0.17078543, + 0.5340854, + 0.049368024, + 0.19567993, + -0.43750215, + 0.85336375, + 0.7968932, + 0.6000461, + -0.21160668, + 0.022086024, + 0.5603159, + 0.024495777, + -0.87153345, + -1.1130608, + 0.21840627, + -0.30729377, + 0.11430499, + 0.41008744, + -0.09583238, + -0.3387219, + 0.25293368, + 0.124375165, + -0.35454127, + -0.41393188, + 0.62762606, + 0.14656812, + 0.36614552, + 0.84323794, + -0.74738854, + 0.084767215, + 0.20013428, + 0.7105891, + -0.49647114, + -1.1256988, + -0.0351355, + 0.13080926, + 0.29849023, + 0.34973088, + 0.9473583, + -0.14931956, + 0.103675455, + -0.5996921, + 0.5076246, + -1.1760892, + 0.37189907, + 0.24640553, + 0.074896485, + -0.7301519, + 0.5963416, + -0.4245016, + -0.3389464, + 0.60895747, + -0.46614942, + -0.49710497, + 0.20962489, + -1.0426294, + 0.2872895, + 0.4374295, + -0.77460456, + 0.48572594, + -0.11683272, + 0.24167877, + 0.3531498, + 0.6154695, + 0.110942736, + -0.086129256, + -0.3053316, + 0.14046031, + -0.9618248, + -0.6638855, + -0.43790448, + -0.16429031, + 0.7572856, + 0.06467402, + 1.1106212, + 0.12235008, + 0.4252285, + 0.41337997, + -0.07815869, + -0.11060463, + -0.017809942, + -0.35264122, + 0.9101371, + -0.33808795, + -0.10384929, + 0.44703686, + -0.551257, + 0.57970846, + 0.09262912, + 0.34195668, + 0.2234929, + 1.9648614, + -0.5446885, + 0.4880285, + -0.15534586, + -0.76321065, + 0.1703878, + 0.054060005, + -0.22604841, + 0.07696145, + -0.04604319, + 0.2906676, + 0.34214324, + 0.6001811, + -0.24069779, + -0.34061906, + 0.04339627, + -0.20146337, + -0.39078578, + -0.5047984, + 0.27993983, + 0.29602927, + -0.9045856, + -0.35371536, + 0.16146418, + 0.029872209, + -0.20257798, + 0.08453064, + -0.031050116, + -0.054522812, + -0.1937195, + -0.014151845, + 0.31501135, + 0.025905792, + 0.68801844, + 0.14908266, + 0.5094029, + -0.7902131, + 0.10568984, + 0.5294051, + -0.44659534, + 0.007424308, + -0.392659, + -0.431634, + -0.07916853, + 0.44436738, + 0.24379162, + 0.074617855, + 0.32943055, + 0.21191595, + -0.54157305, + 0.90286595, + 0.24486008, + -0.25633365, + -0.36245328, + 0.0059990063, + -0.14365603, + -0.9431555, + 0.71917295, + -0.7188447, + -0.34926623, + -0.31750152, + 0.2030716, + 0.6465947, + 0.8415656, + 0.5337228, + -0.2984532, + -0.43673453, + 0.11565148, + -0.6426203, + -0.121937096, + -0.16331066, + 0.15391085, + -0.28765538, + -0.40217626, + -0.09640377, + -0.6627671, + -0.10850626, + 0.15621935, + 0.1021995, + -0.4269496, + -0.20614898, + -0.36030325, + -0.07327028, + -0.28213018, + -0.040075917, + -0.32915586, + -0.9247641, + -0.3423927, + -0.1286877, + -0.8201297, + 0.013400342, + -0.13046214, + -1.1800265, + 0.2850166, + 0.039527092, + -0.070888095, + 0.5222611, + -0.26985842, + -0.5107282, + 0.23903611, + 1.422034, + 0.59356016, + -0.0804681, + 0.07651371, + 0.47739923, + -1.4049715, + 0.057487257, + 0.65835726, + 0.012012005, + -0.83520705, + 0.14005867, + 0.3179408, + 0.09793091, + 0.43227002, + 0.24015082, + -0.74180096, + 1.2195641, + 0.27990267, + 0.20510876, + -0.26877096, + -0.023211706, + 0.031025935, + -0.7453047, + 0.43501896, + -0.45996207, + -0.14313409, + 0.13326743, + 0.122960486, + 0.72335243, + 0.6529524, + -0.59417254, + 0.5511575, + -0.606183, + -0.08331241, + -0.047018968, + 0.20930567, + 0.53218025, + -0.53194004, + -0.8049671, + -0.30903393, + -0.5984673, + -0.87982637, + 1.162206, + 0.71807724, + -1.0396767, + 0.38749945, + 0.9213603, + -0.054405376, + -0.47395605, + -0.42909703, + 0.17345208, + -0.13005951, + -0.91845477, + 0.28418788, + -0.6736643, + 0.21831436, + 0.26330477, + 0.40875673, + -0.636742, + 0.08652145, + -0.21403389, + -0.52358896, + 0.033423707, + -0.18996708, + -0.29703385, + -0.30813947, + 0.35787016, + 0.44168937, + 0.31971094, + 0.7259261, + -0.3958075, + -0.3152674, + 0.49230948, + 0.0063293837, + 0.20789315, + -0.001784265, + 0.29177412, + -0.7019365, + 0.30329597, + -0.38417867, + -0.029093584, + -0.30668706, + 0.31243366, + 0.4280067, + -0.6526408, + -0.06755851, + -0.53404266, + 0.013171971, + 0.88783205, + 0.1785952, + 0.19072059, + 0.78968906, + 0.3790344, + 0.27641153, + -0.70200235, + -0.3149432, + -0.6056072, + -0.84975773, + -0.18786192, + 0.32024395, + 0.19375575, + 1.1661772, + 0.15194057, + 0.36783332, + 0.79111534, + -0.32413408, + -0.051064067, + 0.17450851, + 0.5964902, + -0.37797788, + -0.21126439, + 0.022742009, + -0.048503, + -0.18102294, + 0.0601886, + -0.703537, + 0.66364837, + -0.2881683, + -0.108233154, + 0.27691418, + 0.33392403, + 0.11869593, + -0.5493283, + -0.0894763, + -1.294402, + -0.3414066, + -0.27450776, + -0.51224303, + 0.13566503, + 0.07402909, + -0.049980983, + -0.83780164, + -0.0890995, + -0.70201594, + 0.13779654, + 0.5264545, + 0.5073055, + -0.21666935, + -0.39014325, + 0.31095043, + -0.7438618, + 0.29784217, + 0.69888926, + 0.017548501, + 0.4117448, + 0.32664767, + 0.32981226, + 0.078561135, + -0.19950867, + -0.002681531, + 0.102622524, + -0.12783173, + 0.54124886, + 0.6291374, + -0.12358592, + 0.32964104, + 0.13895114, + 0.19255789, + -0.12321177, + 0.52333534, + 0.34103125, + 0.16730158, + 0.058574907, + 0.12774754, + 0.42483726, + -0.08132103, + -0.3200609, + -0.7567713, + 0.41511407, + 0.1708309, + 0.1025504, + -0.48109135, + 0.19218239, + -0.38762102, + -0.102074854, + -0.7044278, + 0.56144935, + 0.12716034, + 0.27252367, + -0.2139098, + -0.066363454, + -1.1736205, + -0.2802698, + -0.22540188, + 0.21006158, + 0.17829902, + 0.72439, + 0.21021278, + 0.35163194, + -0.056796525, + -0.1269753, + -0.18157396, + -0.71756333, + 0.031683877, + -0.3434423, + -0.598749, + 0.14107509, + -0.29693985, + -0.43832842, + -0.059731647, + 0.08904247, + 0.61394, + -0.0838373, + -0.65991485, + -1.2238059, + 0.23648846, + 0.03387013, + 0.11243858, + 0.023466371, + -0.09593597, + -0.6864304, + 0.18768376, + -0.17367233, + 0.28258383, + 0.43573853, + -0.24848267, + 0.017208412, + -0.046796765, + 0.018522283, + 0.021396523, + 0.09836509, + 0.025008135, + -0.40591666, + -0.24485458, + 0.074191056, + -0.3331389, + -0.34930742, + -0.026469618, + -0.41349953, + -0.2227197, + -0.20958076, + 0.14334382, + 0.07906173, + -0.22607258, + -0.47139344, + -0.75067025, + 0.17725228, + -0.2102774, + 0.016074236, + -0.5525872, + -0.34262723, + -0.2441841, + 0.49715126, + -0.5536491, + -0.18942142, + -0.08239488, + 0.10202718, + -0.49043137, + 0.88622165, + -0.9687871, + -0.002789721, + -0.08630055, + 0.22932094, + 0.36614913, + 0.14315657, + 0.1538178, + 0.5969062, + -0.19250105, + -0.15922464, + -0.2787053, + -0.17668377, + -0.7815433, + -0.30326504, + 0.22024523, + 0.24654049, + -0.17198735, + 0.08279521, + -0.16834009, + 0.043088797, + 0.4947298, + 0.48330033, + 0.04125823, + 0.5718062, + 0.03208746, + -0.32252723, + 0.16103064, + 0.018203441, + -0.6684262, + 0.63778114, + -0.6551296, + 0.42231315, + -0.27447233, + 0.36926755, + 0.089495815, + -0.055379987, + -0.27263555, + -0.02256975, + -0.08435048, + 0.6765057, + 0.23670562, + -0.13063307, + -0.048927642, + -0.47157368, + 0.3965791, + 0.23284623, + 0.37888426, + -0.51772463, + 0.019191451, + -0.09482032, + -0.27823257, + 0.35757717, + -0.23356418, + 0.23155713, + -0.46556854, + 0.16885874, + -0.2880992, + 0.4973876, + -0.29026052, + -0.21655911, + 0.062124982, + -0.20573136, + 0.2527937, + -0.13039246, + -0.7937051, + -0.26568645, + 0.35998383, + -0.30379876, + -0.8802005, + 0.3547319, + -0.12155091, + -0.3424648, + 0.45667523, + -0.35960063, + -0.11347298, + 0.08070199, + -0.14447361, + -0.22475232, + 0.49468458, + -0.98781097, + -0.032633085, + -0.113064155, + 0.3326771, + 0.083323255, + 0.5740593, + 0.6151245, + 0.14748676, + -0.4625596, + 0.054103106, + 0.00612098, + -0.21667904, + 0.47247708, + -0.15249538, + 0.39002776, + 0.5042389, + -0.38091004, + -0.28585204, + 0.41349906, + -0.038335636, + -0.31172526, + 0.8728566, + 0.22483101, + -0.12816137, + 0.38061374, + -0.10367331, + 0.0602383, + 0.086044684, + -0.69242626, + 0.011308499, + -0.38706124, + 0.20421976, + -0.5877696, + -0.31531242, + 0.10545086, + -1.2100762, + 0.09915966, + 0.6324105, + 0.08729786, + 0.57330364, + -0.5215086, + -0.023544872, + -0.36918288, + -0.04798453, + 0.28496733, + 0.31171122, + -0.3304602, + 0.31413037, + 0.086523265, + -1.4346424, + 1.0745457, + 0.84248215, + -0.0027363896, + 0.4413573, + 0.011791632, + -0.5304562, + -0.037899002, + 0.34071118, + 0.06376809, + -0.10315236, + 0.2645282, + -0.6132711, + 0.17895767, + 0.5851486, + 0.13757055, + 0.40451694, + 0.14378902, + -0.2434611, + -0.27724555, + 0.80522466, + 0.0649, + 0.25204164, + 0.02592846, + -0.6843663, + 0.078876175, + 0.0043817125, + 0.38159028, + -0.021487236, + -0.5737401, + 0.103462696, + 0.0543036, + 0.2914808, + -0.41305095, + -0.32963157, + 0.2098634, + 0.056027137, + -0.47111607, + -0.36654764, + 0.14456964, + -0.5093298, + 0.8900198, + -0.19305447, + -0.96117336, + 0.18935205, + -0.928981, + 0.7716763, + 0.7662021, + 0.6457118, + 0.09260677, + 0.106472135, + -0.08434531, + 0.5028472, + 0.78250176, + 0.16174524, + -0.2380994, + 0.1886342, + -0.21258155, + 0.98121953, + 0.34688097, + 0.18625589, + 0.26240742, + -0.73515314, + 0.028863348, + -0.38860252, + -0.64968395, + 0.3433439, + -0.18288556, + -0.16227485, + -0.39645657, + 0.349998, + -0.48563296, + 0.1079644, + 0.9155354, + -0.8223966, + 0.19088572, + 0.1950828, + 0.49994946, + 0.27959555, + 0.49863058, + 0.9417961, + 0.5702498, + -0.47985402, + 0.6176149, + 0.45039696, + 0.09334664, + -0.44177893, + 0.0019241218, + 0.27819854, + -0.31018457, + 0.34964728, + 0.18240361, + -0.44426134, + -0.032785863, + -0.48240745, + 0.6133015, + 0.10592939, + -0.12046972, + 0.05160539, + 0.3552714, + -0.09037112, + -1.068445, + 0.14118654, + -0.64814055, + 0.25556, + 0.38207415, + 0.0035322309, + 0.16964313, + 0.677953, + 0.23014174, + 0.24658106, + -0.11267711, + -0.55447507, + -0.119067684, + 0.54224116, + 0.31565383, + 0.5244208, + -0.83387357, + 0.40948436, + -0.3378592, + -0.33543268, + 0.042933535, + 0.104173556, + -0.6271039, + 0.21138573, + 0.38814163, + -0.09056228, + -0.3124646, + -0.30543572, + -0.12258975, + 0.16647546, + -0.1406545, + 0.8662054, + 1.0453173, + 0.5223655, + 0.14587998, + -0.95245034, + -0.39321125, + -0.11832072, + 0.45038953, + 0.18365487, + -0.20192692, + -0.46909228, + -0.16791905, + 0.13341409, + -0.2960372, + 0.17926578, + -0.8761651, + 0.19807526, + 0.041413892, + -0.13154015, + -0.33472893, + 0.20185846, + 1.0542618, + 0.17828444, + 0.09722105, + -0.4392705, + 0.0077023515, + 0.17092955, + 0.34391454, + 0.5730579 + ], + "2025-05-19T19:19:26.683932", + "2025-05-19T19:19:26.683932", + -25.5066947937, + -14.3198242188, + 103.6369628906, + "4", + "ID: 14859415
Cluster: 4
Chunk: Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x..." + ], + [ + 11689, + "die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\ngradf = (3x 2 \u2013 4, 2x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -1, 2 5\nn = 1 2,-1 8,-2 68\nn = 2 -6,1 104,2 10\u2019820\n(c) a=0.1: Iteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -0.1, 0.2 0.05\nn = 1 1.1,0.8 -0.037, 0.16 0.027\nn = 2 1.137,0,64 -0.01, 0.128 0.017\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1) .\n\n1,0 , 2,0\ngradf = (30x 2 \u2013 40, 20x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -10, 20 500\nn = 1 11, -19 3590,-380 13\u2019032\u2019500\nn = 2 -3579, 3611 384277190, 7220 1.5e17\n55", + 18240, + 9777069, + null, + "md", + null, + [ + 0.035227485, + 0.43120527, + 0.52239215, + -0.13663736, + -0.31758854, + 0.29873326, + -0.29649162, + -0.5112855, + -0.15712917, + -0.4734825, + 0.1259042, + 0.08540109, + 0.3401257, + -0.40163463, + 0.83632165, + 0.2960099, + -0.5661757, + 0.77227396, + 0.12360928, + -0.86863804, + -0.04766032, + -0.29687282, + 0.7867298, + 0.37844926, + -0.37913114, + -0.14191093, + -0.10414994, + -0.0042673647, + 0.09452772, + -0.01963433, + -0.2262731, + 0.41314828, + -0.5426892, + -0.82731766, + 0.31833154, + -0.056809902, + 1.0170922, + 0.16727799, + 0.12341689, + 1.1641692, + -0.5483145, + 0.5661739, + 0.44714043, + -0.09855313, + 0.9515027, + 0.2780046, + -0.33897194, + -0.8765168, + -0.16424131, + -0.44698256, + 0.18091345, + 0.5797814, + 0.4765207, + 0.23994556, + 0.5589339, + -0.8995157, + 0.42970592, + 0.19083676, + 0.30122584, + -0.0084908735, + 0.2271487, + 0.60508436, + -0.5885565, + 0.12091863, + 0.522537, + -0.2400003, + 0.2593043, + -0.28657794, + 0.2016936, + 0.1558629, + -1.0604045, + 0.2714879, + 0.658165, + 0.30373248, + -0.11965367, + 0.24967445, + 0.0023111403, + -0.21487568, + -0.720264, + 0.26807547, + -0.3657173, + 0.059623618, + -0.319422, + -0.28238973, + 0.25431567, + 0.37349644, + 0.16231835, + 0.20085457, + 0.36130702, + -0.4669555, + -0.011541992, + 0.2428661, + -0.13633785, + 0.3010863, + -0.54505575, + -0.6538167, + -0.5882407, + -0.5839243, + -0.48536655, + 0.18463476, + -0.27275962, + 0.4702417, + 0.39573306, + -0.21565984, + -0.48398867, + -0.3867579, + -0.07014859, + 0.39496505, + -0.11394868, + 0.9602792, + 1.525674, + -0.015809106, + 0.2727615, + 0.12185989, + 0.188926, + -0.45364374, + 0.30688545, + 0.22666086, + -0.3327866, + -0.54607743, + 1.1045344, + -1.63131, + 1.0533394, + -0.01845837, + 0.35336986, + 0.50757164, + 0.8207295, + -0.026832122, + 0.1515329, + 0.8613791, + 0.045546185, + 0.11808446, + 0.6049832, + -0.013299204, + -0.16695914, + -0.2041381, + 0.11554308, + 0.8998783, + -0.09762573, + -0.6887736, + -0.651439, + -0.7301151, + -0.08139841, + -0.24855262, + 0.4942112, + -0.5063123, + -0.33753967, + -0.19405794, + 0.12723875, + 0.21742342, + 0.20283914, + 0.21461979, + 0.63907933, + 0.7470671, + 0.31549773, + 0.6041687, + -0.12604114, + 0.46686167, + -0.36920264, + 0.20828255, + -0.71072066, + 0.37770894, + -0.43569168, + -0.4696259, + -0.0002884772, + 0.86632794, + -0.1098367, + -0.27356106, + 0.7677609, + -2.039423, + 0.7510078, + -0.10637742, + -0.70602727, + -0.5075672, + -0.33394322, + 0.4957729, + 0.36586857, + -0.23783559, + 0.15762946, + 0.15352885, + 0.5021717, + 0.90963167, + 0.42142627, + -0.38688138, + 0.35238108, + 0.2751043, + 0.10191421, + 0.0042552575, + 0.049110144, + 0.3200574, + -0.82587683, + -0.51401, + -0.21321319, + -0.056421444, + 0.4624979, + -0.76471865, + -0.19947533, + -0.057007495, + -0.40732443, + 0.110031664, + 0.7238411, + 0.15247838, + 0.49675307, + -0.5793193, + -0.11268348, + 0.3219213, + -0.052244537, + -0.283055, + 0.761901, + -0.24347527, + 0.85326636, + 0.103682384, + 0.7662685, + 0.45522246, + -0.402625, + 0.3245895, + 0.04530649, + 0.9966359, + -0.5977676, + -0.84382594, + -0.12858164, + 0.22183448, + 0.055392537, + -0.45959252, + -0.22699884, + 0.22088419, + -0.84075963, + 0.84792316, + 0.25188574, + 0.21962786, + -1.4087516, + -0.2749581, + -0.3968765, + -0.40764, + -0.572621, + 0.3130048, + 0.6636314, + 0.15228355, + -0.55669934, + 0.007022081, + 0.5633618, + -0.9288915, + 0.78622526, + -0.18130966, + 0.41737992, + -0.13846365, + -0.111729726, + 0.6047288, + 0.23378691, + 0.31664658, + 0.9489537, + -0.461172, + -0.27206695, + 0.45173162, + 0.48066688, + 0.10924919, + 0.35946625, + -0.3943067, + -0.7258749, + -0.12708573, + 0.020771712, + 0.2535193, + 0.16891477, + -0.13719198, + -0.032196134, + 0.16568378, + 0.16247398, + -0.0010640193, + -0.18431354, + -0.23212811, + 0.23384413, + 0.4116839, + 0.20506257, + 0.17645848, + -0.19683361, + 0.40574425, + -0.11653183, + -0.32934743, + 0.22995192, + -0.64957047, + 0.63135844, + -0.0354736, + -0.297599, + -0.19807786, + 0.41436026, + -0.0026962124, + -0.3644193, + 0.21282655, + 0.3815832, + -0.43197426, + -0.22535925, + -0.16352919, + 0.2260164, + -0.23978303, + 0.09813753, + -0.21887031, + 0.0124518275, + -0.02479434, + 0.36484334, + -0.30614692, + 0.47383517, + -0.074305594, + 0.64162344, + -0.48429582, + 0.23084599, + -0.17025676, + 0.3183928, + -0.27682674, + -0.032342233, + 0.2871809, + -0.12180154, + -0.22941951, + 0.07042329, + -0.5289044, + -0.06341804, + -0.39083895, + 0.10383343, + -0.16820128, + -0.06726672, + 0.7922198, + 0.27378166, + 0.7214276, + -0.0867618, + -0.51426053, + 0.07959388, + -0.054650407, + 0.4839524, + -0.6344546, + -0.37320217, + -0.05446639, + 0.09720878, + -0.026777014, + 0.6952187, + 0.02859007, + -0.013296358, + 0.2527567, + -0.51539916, + 0.4130947, + -0.32347235, + -0.12590106, + 0.34275198, + -0.085946225, + -0.24895418, + 0.5046025, + -0.10522412, + -0.03700988, + 0.7916052, + -0.39988512, + 0.13142252, + 0.23594326, + -0.39860323, + 0.2011841, + 0.40382236, + 0.030361295, + 0.46637934, + -0.056896657, + 0.5328057, + -0.12833251, + -0.0642562, + -0.09188379, + 0.03354928, + 0.09755744, + 0.39249888, + -0.3910788, + -0.4820851, + 0.17704615, + -0.07618969, + 0.4056756, + -0.4949583, + 0.41383332, + -0.20570967, + 0.09886987, + -0.16988349, + -0.17578858, + -0.62433785, + -0.14272404, + -0.23742738, + 0.7067068, + 0.08055101, + 0.028926035, + -0.22104391, + 0.087547965, + 0.4578066, + -0.16460729, + 0.14203726, + 0.066070706, + 0.19873983, + -0.97487146, + 0.1334939, + 0.49761176, + -0.5894046, + -0.12641427, + 0.28989482, + 0.048131824, + 0.3156877, + 0.20787624, + 0.3709583, + 0.14004359, + 0.40923533, + -0.30218974, + 0.23594126, + 0.1278511, + -0.017410731, + -0.44881472, + 0.27993459, + -0.25400424, + 0.104328275, + 0.35584453, + -0.06380194, + -0.008632638, + -0.13774987, + 0.22347255, + 0.34284416, + -0.15264308, + -0.20840122, + -0.62338597, + 0.28650114, + 0.45039725, + -0.12641169, + -0.07468858, + -0.046326824, + 0.4700452, + -0.39182103, + 0.17811665, + 0.3795021, + -0.59240544, + 0.5791213, + -0.045146726, + -0.4108375, + -0.30806798, + 0.55166745, + -0.25599554, + 0.12944798, + -0.6579468, + -0.060832016, + -0.51299536, + 0.7201315, + 0.40826234, + 0.31521404, + -0.39594027, + 0.030386046, + -0.3161918, + -0.104474425, + 0.012153486, + -0.21324696, + 0.16232114, + 0.041458905, + -0.34708932, + 0.3373382, + 0.62198997, + -0.32808605, + 0.09074414, + -0.17344186, + 0.41898903, + -0.47626483, + -0.6410973, + 0.3033397, + -0.586496, + -0.17162135, + -0.13217324, + -0.2674671, + -0.3099337, + -0.015676372, + 0.3224088, + 0.020955287, + -1.1030031, + -0.0868898, + 0.31348336, + 0.13870342, + -0.34074646, + 0.13996796, + 0.25612673, + 0.49375385, + -0.3231639, + 0.17083587, + -0.10337609, + -0.19430374, + -0.31546322, + -0.25721282, + 0.38520336, + -0.044453565, + 0.21529196, + 0.4947179, + 0.101060614, + -0.37935364, + 0.099106215, + 0.6867792, + 0.0025704876, + 0.20121782, + 0.96456885, + -0.1283732, + -1.1683611, + -0.11534264, + 0.40248346, + 0.053767018, + -0.41854605, + -0.3217911, + 0.36527118, + 0.10784527, + 0.20822115, + -0.12214999, + 0.08554269, + 0.3884391, + 0.23326212, + -0.18385376, + -0.1049612, + 0.20401052, + 0.04840838, + -0.42490232, + -0.3747599, + -0.65142345, + -0.49928412, + -0.07109903, + 0.091538586, + -0.010010146, + -0.2363716, + -0.48887315, + 0.28099373, + 0.07717447, + -0.11009285, + 0.80506605, + -0.12887149, + 0.46632123, + -0.06320484, + -0.07349111, + 0.12581712, + -0.50632465, + -0.7502715, + 0.72286767, + 0.66407174, + -0.32214713, + 0.3859881, + 0.43759218, + -0.42869404, + -0.44520253, + -0.037659194, + 0.24154726, + 0.08703357, + -0.45384103, + 0.38149554, + 0.07463053, + -0.041927394, + 0.013305166, + 0.26810476, + -0.8562882, + -0.2558826, + 0.06763456, + -0.28356755, + 0.16059378, + 0.04711604, + -0.22735846, + -0.8763924, + -0.052913904, + 0.10749309, + 0.32414764, + -0.06585851, + -0.25262934, + 0.18168901, + 0.0916653, + 0.040337734, + 0.05081083, + -0.25373924, + -0.04647749, + -0.9953149, + -0.07975103, + -0.50199294, + 0.43385863, + -0.0279468, + 0.06411155, + 0.10261443, + 0.03637725, + -0.66610026, + -0.708709, + 0.14549796, + 0.6292371, + 0.17535964, + 0.018937808, + 0.3016777, + 0.56049526, + -0.13939321, + -0.29889613, + -0.16259395, + 0.4676866, + -0.0076647326, + 0.20867099, + 0.5812738, + 0.24638982, + -0.34074664, + -0.516498, + 0.10343066, + 0.6827388, + -0.16262232, + -0.3601303, + -0.06537609, + 0.23276061, + 0.22300021, + 0.1624578, + 0.028339935, + -0.7799967, + 0.16542193, + -0.20398766, + 0.45729384, + -0.14371595, + 0.13227822, + -0.30483672, + -0.33329743, + 0.578063, + 0.43622142, + -0.03846567, + 0.13217428, + 0.071870655, + -0.20658496, + -0.10483428, + -0.6380193, + 0.2011417, + 0.26053575, + 0.03625028, + -0.4675262, + 0.39476883, + 0.014897877, + 0.13811682, + 0.43138757, + -0.2960908, + 0.18055347, + -0.032982454, + 0.23512948, + -0.32805216, + -0.13928756, + 0.6768971, + -0.072986275, + -0.09639254, + 0.33059004, + 0.29635146, + -0.023856357, + 0.2611434, + 0.37360448, + 0.018534344, + 0.14739662, + 0.52187234, + 0.18570372, + 0.28170028, + -0.052042663, + -0.17293404, + -0.30977768, + -0.03737603, + 0.4057302, + 0.5638813, + 0.21510433, + -0.18194678, + 0.16465731, + -0.22014868, + -0.32049236, + -0.4011475, + -0.4541289, + -0.0017518615, + -0.090146594, + 0.14004038, + 0.21848539, + -0.32724264, + -0.19425802, + -0.7267866, + -0.35283718, + 0.41814366, + 0.12426685, + 0.14658864, + -0.19503674, + -0.034824915, + -0.58092755, + -0.13017248, + -0.32866287, + 0.6277068, + -0.39306104, + 0.4697993, + -0.2470142, + 0.50767654, + -0.07310383, + 0.6671196, + 0.08656066, + -0.47994104, + -0.12072844, + 0.15912488, + -0.32437688, + -0.3463483, + -0.0067896172, + 0.13042772, + 0.11816736, + 0.022483014, + -0.072735876, + -0.07280396, + -0.20163044, + -0.65415305, + -0.1646264, + -0.21397498, + 0.23707938, + -0.15608177, + 0.109623075, + -0.34969735, + 0.1004206, + -0.33453608, + 0.23106638, + -0.21658666, + 0.15824467, + 0.38517153, + 0.063414834, + 0.05709734, + 0.107479624, + 0.20833333, + -0.13213298, + -0.5137263, + -0.95291, + -0.06912414, + -0.41868195, + -0.6520881, + 0.19743855, + -0.19321918, + -0.23971897, + -0.17536615, + 0.25063094, + -0.108771466, + -0.49420372, + -0.8019584, + 0.13576914, + -0.43574837, + -0.10416637, + -0.21026759, + -0.032561593, + 0.24116574, + -0.5091767, + -0.05749426, + -0.24203174, + 0.26416287, + -0.14884727, + 0.11166343, + 0.09139639, + 0.19042426, + -0.31835473, + 0.20356295, + -0.097481936, + -0.2594051, + 0.16354656, + 0.50466853, + 0.8873635, + 0.4801234, + 0.09321807, + -0.18272835, + -0.13771617, + 0.06615932, + -0.47643626, + -0.06752644, + 0.562797, + -0.25931978, + -0.054549776, + 0.24647458, + 0.2542115, + -0.02989177, + -0.2068162, + 0.2748734, + 0.53251004, + 0.09756206, + -0.04186126, + -0.70629615, + 0.19038881, + -0.15723485, + -0.9834419, + 0.62244105, + -0.7646929, + 0.013487862, + -0.24413529, + 0.32784876, + -0.16340125, + 0.21076083, + -0.34701565, + -0.47387967, + -0.10710363, + -0.0852028, + 0.5959022, + 0.18727405, + 0.34072825, + -0.6189017, + 0.25106782, + -0.20841098, + -0.357278, + 0.45501018, + 0.14525281, + -0.030844253, + 0.12794182, + 0.08988879, + -0.116732925, + 0.087557934, + -0.11673422, + 0.22156824, + -0.3411066, + 0.1886593, + 0.07077799, + -0.52785474, + 0.29572374, + 0.06697182, + 0.26801637, + -0.046941906, + -0.77313083, + 0.55185354, + 0.16097802, + 0.1694783, + -0.20930803, + -0.23466276, + -0.53802997, + -0.24319698, + -0.039958708, + -0.1355516, + -0.35911322, + -0.07189368, + -0.560884, + 0.20055085, + 0.51320946, + -0.80182654, + 0.11437595, + -0.29351422, + -0.087016106, + -0.028835885, + 0.09631376, + -0.06407458, + 0.57412136, + 0.05838732, + -0.37002742, + -0.102288365, + -0.35102665, + 0.28478613, + -0.1661081, + -0.03852102, + -0.0054151546, + -0.3677947, + 0.29021317, + -0.1891203, + 0.44183415, + -0.5599079, + 0.5155513, + 0.3318683, + 0.35919705, + -0.119113535, + 0.5035552, + -0.2723381, + 0.14963573, + 0.31347626, + -0.4097501, + -0.3347152, + 0.16897619, + -0.061472647, + 0.6784039, + 0.24478115, + -0.5999226, + 0.27093396, + 1.0283965, + -0.279835, + -0.076503694, + -0.6898769, + 0.2034721, + 0.41926962, + -0.13219967, + 0.5796306, + 0.30212379, + -0.2709058, + 0.27281472, + -0.040140647, + -0.6468353, + 0.56460154, + 0.033623666, + -0.14881152, + 0.12645854, + -0.20834754, + -0.30995488, + -0.001598984, + 0.16623907, + -0.08233867, + -0.34148374, + -0.08473674, + 0.019445524, + -0.26233083, + 0.4287861, + -0.46689406, + -0.30958176, + 0.28260994, + 0.08976661, + -0.11665891, + -0.2964736, + -0.14820407, + -0.1762419, + 0.5419525, + -0.630507, + -0.63939756, + 0.12463762, + 0.123888105, + -0.065095514, + -0.24493478, + -0.10248187, + -0.10433245, + -0.28702286, + -0.50444496, + -0.8259283, + -0.072356954, + -0.1903193, + -0.37907672, + 0.5384889, + -0.6086992, + 0.23767069, + 0.21664363, + 0.38258782, + -0.91976273, + -0.07425148, + 0.12536317, + 0.374138, + -0.012820087, + 0.6708946, + 0.07390079, + -0.30420235, + -0.13551344, + -0.08397073, + 0.11187801, + -0.091831826, + -0.30897006, + -0.3050888, + -0.055678137, + 0.15994307, + 0.36762, + 0.18604925, + 0.07813695, + -0.8905247, + 0.01977349, + -0.13105465, + -0.60167426, + 0.83331895, + 0.08074715, + -0.03922034, + 0.08714168, + 0.4353514, + -0.3627717, + 0.47894472, + 0.390081, + -0.16700861, + 0.049726896, + -0.23213573, + 0.55580294, + -0.14953846, + -0.06304112, + 0.7683089, + 0.43523318, + -0.5748272, + 0.14349, + 0.022570856, + -0.16107881, + -0.026785932, + 0.23980743, + 0.29334068, + -0.49580383, + 0.21463719, + 0.015602928, + -0.59442055, + 0.21942066, + -0.3592873, + 0.38194212, + -0.14315608, + 0.006316334, + -0.13606568, + 0.059023555, + -0.13350494, + -0.3473465, + 0.17897597, + -0.04271264, + -0.060129046, + 0.1470001, + 0.5280489, + 0.7916287, + 0.24326296, + -0.058014788, + -0.63561726, + 0.33414975, + -1.0738757, + -0.05935108, + -0.028371774, + 0.15531635, + 0.7251707, + -0.3813096, + -0.22769515, + -0.42002183, + -0.13887084, + 0.028182413, + -0.32896793, + 0.16953288, + 0.22536467, + -0.046354588, + -0.24269816, + 0.48906392, + -0.09965692, + 0.20276581, + 0.20606808, + 0.025765412, + 0.30582482, + 0.7153344, + 0.13747044, + -0.2871117, + -0.46894008, + 0.542788, + -0.27622065, + 0.13624878, + -0.32685846, + -0.23125267, + -0.111888714, + -0.21238515, + 0.060604446, + 0.05480578, + 0.03564173, + -0.42749816, + 0.35164633, + 0.098566554, + -0.036620628, + 0.2123527, + 0.5478809, + 0.4756705, + 0.1827656, + -0.05477235, + -0.46615583, + -0.49821058, + -0.44490203, + 0.37279472, + 0.55576897 + ], + "2025-05-19T19:19:36.817935", + "2025-05-19T19:19:36.817935", + 1.3950625658, + 74.5743331909, + 24.3858013153, + "4", + "ID: 9777069
Cluster: 4
Chunk: die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1..." + ], + [ + 11703, + "Fallbeispiel\n26", + 18240, + 16380617, + null, + "md", + null, + [ + 0.26656806, + 0.5253133, + 0.48931304, + -0.7356992, + -0.74937826, + 0.11828868, + -0.17567016, + 1.0539167, + -0.6556967, + -1.1363449, + 0.59633434, + 0.7216692, + 0.5009073, + 0.22413087, + 0.051205747, + -0.27063003, + -0.6022064, + -0.28698733, + -0.30200198, + -0.37739652, + -0.46618682, + 0.06087881, + -0.32322696, + 0.6103993, + -0.39389443, + -0.36408284, + -0.06465165, + -0.25247136, + 0.29849216, + -0.329827, + 0.15293445, + 0.4391276, + -0.31882104, + -1.1607982, + 0.29291245, + 0.15577278, + 0.48590055, + -0.3544446, + -1.0439099, + 0.31719062, + -0.24835658, + 0.90581405, + -0.41005722, + -0.48515812, + -0.39847326, + -0.50715244, + 0.56266606, + -0.6822293, + -0.26057157, + 0.45712548, + -0.39637214, + 0.1647966, + 0.56844103, + -0.1755153, + 0.014567126, + 0.14899859, + -0.6519034, + 0.055350937, + 0.56038535, + 0.024977146, + -0.2422539, + -0.03229313, + -0.4092406, + -0.4774099, + 0.21014415, + -0.3916191, + 0.5014661, + -0.2616044, + 0.32053307, + -0.0119501315, + 0.0020810738, + -0.20608665, + 1.5120302, + 0.27151453, + -0.56938565, + -0.5938383, + -0.15028925, + 0.5248443, + -0.07836835, + 0.5862071, + 1.9518499, + -0.29352084, + 0.16167137, + 0.6656772, + -0.64406455, + 0.14786011, + 0.29126352, + 0.40705577, + 0.35676283, + -0.70462024, + -0.2845476, + -0.20026281, + 0.16994011, + 0.56802464, + 0.102048956, + 0.06729406, + -0.8646794, + -0.02687789, + 0.9970468, + 0.5349855, + -0.016164992, + 0.12714043, + 0.19145852, + -0.4511863, + -0.13893025, + -0.21061097, + 0.017473783, + 0.50224406, + -0.39983827, + 0.3322587, + 0.8150785, + -0.20400569, + 0.30269042, + -0.050447002, + 0.12337914, + -0.1522372, + -0.08428399, + 0.6042814, + 0.263124, + 0.53562266, + -0.40173313, + -0.760457, + 0.4933507, + -0.5390687, + -0.7922663, + -0.32986876, + 0.5690958, + 0.0022670329, + -0.5344524, + 0.12269394, + 0.062258597, + 0.035294395, + 0.38164723, + 0.031857587, + -0.6859449, + -0.5394271, + 0.61993945, + -0.09601092, + 0.5261599, + -0.8607084, + -0.338204, + 0.34294045, + 0.17505255, + 0.10175794, + 0.2897252, + -0.3890931, + -0.107151136, + -0.59475565, + 0.41035452, + -0.43786067, + 0.36351028, + -0.068275586, + 1.1509488, + -0.49508047, + -0.26332015, + -0.24175367, + -0.49321502, + 0.15217349, + 0.17802197, + -0.16390277, + 0.20737249, + 0.31161678, + -0.59115326, + -1.9579428, + 0.5080412, + 0.35225263, + -0.46993, + -0.1142135, + -0.3094358, + -0.40894303, + 0.17217349, + -0.131535, + 0.66721207, + -0.39847577, + -0.07186281, + 1.1062379, + 0.5459901, + 0.19205517, + -0.05452239, + -0.3005535, + 0.18785034, + -0.019584786, + -0.15299694, + 0.802385, + -0.09650222, + 0.6198228, + 0.33676514, + 0.26600185, + -0.15315658, + 0.23925877, + 0.44982696, + -0.5339282, + -0.2574655, + 0.051052533, + 0.68586266, + 0.44841826, + -0.1668159, + 0.3570672, + 0.055192806, + 0.23274027, + 0.03289677, + -0.6316706, + -0.96117246, + -0.8100191, + -0.021939987, + 0.20976685, + -0.83067364, + -0.06156082, + 0.20507357, + -0.3007136, + 0.019340632, + 0.5069736, + 0.4016804, + -0.15571849, + -0.06319993, + 0.7716033, + 0.6118568, + 0.20583045, + -0.55439335, + -0.2916159, + 0.7449908, + -0.14526516, + -0.58760405, + 0.44352487, + 0.9608145, + -0.35435525, + 0.17291194, + 0.92847687, + -0.09001401, + -0.3205087, + -0.17437813, + -0.67812747, + -0.67034125, + -0.19794634, + -0.19659679, + -0.22707082, + 0.13876869, + -0.16198131, + 0.27141014, + 0.60070467, + -0.83412427, + -0.4884097, + 1.1916966, + 0.5992131, + 0.15530436, + -0.45891368, + 0.28257093, + -0.13938622, + -0.33365512, + -0.2769592, + 0.7178056, + -0.3953045, + -0.4527607, + -0.7756728, + -0.050965626, + 0.69193256, + -0.122562796, + -0.14252001, + -0.07179728, + -0.17818126, + -0.23219071, + 0.3671777, + -0.15175822, + 0.03317584, + 0.021921713, + 0.10991608, + -0.5901838, + 0.50541586, + -0.04740849, + -0.007759366, + -0.62483805, + 0.09735039, + -0.18309906, + -0.059315503, + 0.10978291, + 0.042852264, + -0.46170902, + -0.29204062, + 0.09641246, + 0.028764758, + 0.20062308, + 0.13238396, + -0.042635337, + -0.425279, + 0.3805701, + -0.7323642, + 0.14837202, + 0.41014558, + 0.15567121, + 0.3053812, + 0.061536286, + 0.45275414, + 0.52026993, + -0.27435046, + -0.5718859, + 0.4229256, + -0.07084866, + -0.030026317, + -0.36797613, + 0.1122264, + -0.26307356, + -0.10515985, + 0.26979277, + -0.14706655, + -0.33508027, + -0.34815684, + -0.22645114, + -0.49091917, + -0.38154513, + 0.3639837, + -0.6122211, + -0.3048436, + -0.24391583, + -0.3895307, + -0.36050758, + -0.0962911, + -0.03136313, + -0.45664772, + 0.38104597, + 0.9460543, + 0.14456847, + 0.6778669, + 0.32279837, + -0.4436569, + 0.05272206, + -0.38535833, + -0.34588924, + -0.2904867, + -0.2772234, + -0.87668824, + 0.11407234, + 0.0198417, + 0.8916821, + 0.24330945, + 0.29072648, + 0.15307361, + 0.2062233, + 0.11192992, + 0.45900953, + -0.155014, + 0.06565483, + -0.23378563, + -0.022830501, + 0.38708347, + -0.26873228, + -0.25730258, + 0.11316378, + -0.4604946, + -0.2215575, + 0.13694397, + 0.08197186, + 0.36586845, + -0.028996773, + 0.18051717, + 0.17586699, + -0.41382223, + 0.2508657, + -0.30702642, + -0.4648323, + -0.19495253, + 0.123159885, + -0.14772266, + -0.29556483, + -0.041871198, + 0.1378702, + 0.09837083, + 0.06253725, + 0.7177657, + -0.48658413, + -0.23369767, + 0.2354919, + -0.026035756, + 0.3622049, + 0.48521173, + 0.35048184, + -0.52645826, + -0.4439323, + 0.3806598, + 0.15666665, + -0.11622001, + 0.29278165, + 0.37806502, + 0.035442308, + 0.19264522, + 0.43181688, + 0.14496572, + 0.76961523, + 0.090536185, + -0.101270154, + -0.40184098, + -0.16885807, + 0.33664152, + 0.08898454, + 0.038801543, + -0.59514266, + -0.6362529, + 0.49646634, + 0.32957858, + -0.2718823, + 0.37542862, + 0.011395182, + -0.2974469, + 0.014852148, + 0.05607478, + 0.10929003, + -0.11432752, + -0.876907, + 0.1592305, + 0.69625735, + 0.043638654, + -0.17394237, + 0.059968024, + 0.32240793, + -0.047884714, + -0.20440532, + 0.12123285, + 0.64207363, + -0.06869782, + 0.72979045, + 0.29619628, + 0.15942426, + 0.5040492, + 0.581812, + 0.07661596, + -0.016697299, + -0.13293299, + -0.5640195, + 0.26753142, + -0.39310464, + 0.6581654, + 0.095744535, + -0.10117728, + 0.29387343, + 0.26654446, + 0.110354185, + -0.23955593, + -0.15913647, + -0.4193846, + -0.08628654, + 0.8529431, + -0.43195474, + 0.08387873, + -0.208806, + -0.041998703, + 0.18912126, + -0.432355, + 0.18521535, + 0.70500445, + 0.340972, + 0.16211247, + 0.48353451, + -0.087219365, + 0.24761929, + -0.60789067, + -0.038408555, + -0.21116513, + -0.32791704, + -0.026726462, + 0.17587714, + 0.28274095, + 0.2850052, + 0.43851233, + 0.32130143, + -0.30484486, + -0.055469, + -0.27294496, + 0.13276143, + -0.021105938, + -0.19310531, + 0.3066401, + -0.15792915, + 0.48119622, + -0.36528304, + 0.6264926, + -0.1438396, + -0.16154468, + 0.015671533, + -0.19105929, + -0.4125015, + 0.24613036, + -0.39126223, + 0.72922206, + 0.38456106, + 0.62204397, + -0.20637366, + -0.38563398, + -0.10032717, + -0.14298457, + 0.32253802, + 0.20113276, + 0.7401749, + -0.5676083, + 0.2110326, + 0.18967815, + -0.15491089, + -0.6085462, + 0.17248648, + -0.21303543, + 0.073526904, + 0.64009035, + -0.25802758, + 0.25763223, + 0.23493016, + -0.15475631, + 0.037105337, + 0.108165085, + 0.49268818, + -0.5189825, + 0.07913368, + -0.4079382, + -0.23391135, + 0.037048854, + -0.20974134, + 0.47924066, + 0.094929665, + -0.23066437, + -0.35099483, + -0.53016454, + -0.412993, + 0.09029362, + 0.62401044, + -0.22009638, + -0.5276195, + 0.18111923, + -0.3743839, + -0.07593414, + -0.08641575, + 0.055489447, + -0.22558668, + 0.40833318, + -0.34415168, + -0.069987774, + 0.035186708, + -0.4325619, + -0.25760287, + -0.55115765, + -0.045084666, + -0.07199043, + -0.097315975, + -0.2804834, + -0.05913653, + 0.07555573, + -0.17714939, + 0.06892068, + 0.1066713, + -0.22870386, + 0.23601429, + 0.051809587, + 0.06374412, + 0.26616177, + -0.39634538, + -0.094775155, + -0.017267257, + -0.40489888, + -0.0007169396, + 0.1551452, + 0.06273943, + -0.10574545, + -0.0603436, + -0.09682876, + 0.1814125, + 0.33648837, + 0.15987818, + -0.31163657, + -0.36416763, + -0.63220096, + -0.79556865, + -0.2973321, + -0.123603426, + 0.6712883, + -0.5098917, + -0.25634712, + 0.37733248, + -0.15558279, + 0.11248955, + 0.021146823, + -0.103081696, + 0.6409461, + 0.16087292, + -0.37029922, + -0.40938216, + -0.0019384865, + -0.15710075, + 0.48344004, + 0.3273008, + -0.3451752, + -0.39136612, + -0.32477927, + -0.44262397, + 0.26897448, + 0.06427331, + -0.1460348, + 0.39051893, + -0.18446368, + 0.1659826, + -0.20127128, + -0.15676631, + 0.01807353, + -0.47902608, + 0.20159993, + 0.43535152, + 0.040248275, + 0.667825, + 0.26098603, + 0.12348478, + 0.015419008, + -0.09814551, + -0.09458242, + -0.059831534, + -0.031137764, + -0.072932646, + 0.14662859, + -0.22312818, + -0.4620953, + 0.2641797, + 0.39962587, + -0.17054492, + -0.20925215, + -0.13143113, + 0.044346415, + 0.60195786, + 0.0859361, + 0.13751808, + 0.35820714, + -0.33576325, + -0.30866498, + 0.27948305, + -0.0879558, + 0.19033894, + 0.045771107, + 0.29310498, + -0.027852304, + -0.1387852, + 0.44800496, + 0.09448314, + 0.19863531, + -0.3857126, + -0.12853393, + -0.030014964, + 0.61765695, + 0.42165846, + -0.62757117, + -0.37945288, + 0.6332541, + -0.464457, + -0.5361437, + 0.83499134, + 0.19881387, + -0.67729807, + -0.42446598, + -0.58397615, + -0.63222253, + -0.101353936, + -0.4741449, + -0.036133796, + 0.043779474, + 0.21366848, + -0.11196974, + -0.13459426, + -0.2021784, + 0.35046178, + -0.66610587, + 0.24167335, + 0.5297449, + -0.032162804, + -0.36616313, + -0.048948735, + -0.14576703, + 0.021878198, + 0.32275957, + 0.3759007, + 0.085267544, + 0.3435522, + 0.0226029, + 0.50576204, + -0.5416529, + 0.3329186, + -0.04709679, + 0.14495775, + 0.35686415, + -0.07772631, + -0.47206488, + 0.115788914, + -0.18432747, + -0.37547487, + -0.4514291, + -0.1813632, + -0.3239724, + -0.1417988, + 0.013881765, + 0.049018946, + -0.19953737, + -0.17679965, + -0.012268078, + 0.02886875, + 0.13546494, + -0.39463645, + -0.39966086, + 0.11478209, + 0.42962077, + -0.37181956, + -0.8302474, + -0.10372332, + 0.06350693, + -0.30584562, + 0.23068543, + 0.37382856, + -0.3456079, + -0.32688951, + -0.08858538, + 0.4070978, + 0.46008956, + 0.6758132, + 0.24465998, + -0.40935487, + 0.22364432, + -0.7686984, + 0.0008602478, + -0.14089099, + -0.4738329, + 0.8239867, + 0.108914554, + 0.06373408, + 0.2087746, + -0.46599206, + -0.26990235, + -0.12681249, + -0.3558678, + 0.24894361, + 0.075637706, + 0.31908542, + 0.10796381, + -0.06272471, + -0.21588288, + -0.010266364, + -0.25708652, + -0.22406733, + 0.2904529, + 0.018928722, + 0.14384589, + 0.42431313, + 0.506095, + 0.40140998, + 0.008040674, + -0.6993208, + -0.5624181, + -0.19976181, + -0.031089053, + -0.4744235, + 0.47310293, + -0.046421744, + 0.19140154, + -0.17241013, + 0.5352506, + -0.14448403, + 0.3940098, + -0.06916042, + 0.4996309, + -0.3126294, + 0.16966173, + 0.43984804, + -0.18812901, + -0.08509977, + -0.112525955, + -0.40217116, + -0.42965603, + -0.11719439, + -0.13274771, + 0.6052349, + -0.7040949, + 0.18117198, + 0.008695886, + -0.6484499, + 0.07742027, + 0.010862865, + 0.0063298345, + 0.040362574, + 0.37499115, + -0.3138166, + 0.17703916, + -0.34696263, + -0.015527494, + -0.09432372, + 0.22715187, + 0.21799369, + -0.35087454, + 0.3345401, + -0.15899345, + -0.52826846, + 0.46416888, + 0.36001977, + -0.56908166, + 0.17644536, + -0.07616757, + -0.29044563, + 0.5238607, + 0.31771886, + -0.07184307, + -0.24200456, + -0.16190931, + 0.008243799, + 0.023209296, + 0.06534143, + -0.41226047, + 0.112298295, + -0.3015791, + -0.5647689, + -0.04952158, + -0.00445503, + 0.16611058, + -0.23187056, + -0.44529772, + 0.29885244, + 0.31303346, + -0.13814785, + -0.1932252, + -0.012695096, + -0.15963979, + -0.12772162, + -0.047912568, + -0.28576612, + 0.4680935, + 0.3402425, + -0.108937636, + 0.8961656, + -0.3041432, + -0.12323314, + -0.016468868, + -0.19155559, + 0.09138339, + -0.05337052, + 0.1106626, + -0.016372368, + -0.36485037, + 0.17217425, + -0.29221687, + 0.39180073, + -0.21099079, + -0.0023429021, + 0.21915114, + 0.6374825, + -0.3332619, + 0.053048454, + -0.3141463, + -0.3617488, + 0.071757555, + -0.07790172, + 0.3100374, + -0.31573573, + -0.58393866, + 0.51212573, + 0.3571202, + 0.06581415, + 0.32387367, + -0.101696275, + 0.7823158, + -0.09569957, + 0.6328414, + 0.16383699, + 0.24601734, + -0.5235795, + 0.3037342, + 0.08023377, + -0.298779, + 0.17945886, + 0.1675681, + 0.076659165, + -0.020239571, + -0.6810321, + -0.06979373, + 0.14966048, + 0.7473624, + -0.4045639, + 0.25004083, + -0.06125778, + -0.17939858, + -0.06522793, + 0.23669598, + -0.18314189, + -0.03256868, + -0.069894694, + 0.16219781, + -0.29723406, + 0.44915992, + 0.47120082, + 0.35745588, + 0.36508352, + -0.6298312, + -0.0038676448, + -0.000684265, + 0.0768022, + -0.13687824, + 0.65207183, + 0.18375845, + 0.14368202, + -0.061746687, + -0.09830982, + 0.06257132, + 0.6280069, + -0.34335703, + 0.37760842, + 0.3159033, + 0.13959254, + 0.39266062, + -0.08280173, + -0.14325562, + 0.20307642, + 0.25995505, + 0.26635066, + -0.1264677, + -0.08744081, + 0.23189142, + -0.06639249, + -0.012150578, + 0.15435706, + 0.39075422, + -0.38875258, + 0.13185693, + 0.12422066, + 0.095832065, + 0.033905335, + -0.07125055, + -0.12763172, + 0.14759089, + -0.24925143, + 0.42952144, + 0.44857544, + -0.44048527, + -0.27902123, + 0.27675, + 0.4195206, + 0.5265678, + 0.29162216, + 0.29116675, + -0.71511525, + -0.21162498, + 0.696861, + -0.15296543, + 0.110065766, + -0.002412146, + -0.09934472, + 0.09578111, + 0.2346858, + 0.9101971, + 0.48778546, + -0.71838707, + 0.08633807, + 0.10951728, + 0.35759056, + -0.3917056, + 0.29888383, + 0.24649747, + -0.27665076, + -0.2941874, + -0.10381008, + 0.006866522, + 0.37984443, + -0.20687683, + -0.17171974, + -0.3413689, + 0.062334947, + 0.23428057, + 0.22714692, + -0.11409806, + 0.010326289, + 0.27350253, + 0.70198333, + -0.34454703, + -0.21612805, + 0.46419516, + 0.09470786, + 0.32727247, + -0.100289404, + 0.40277886, + 0.14520058, + -0.22886594, + -0.4284003, + -0.030329103, + -0.21271726, + 0.91875297, + -0.22989021, + -0.26487443, + -0.083734445, + 0.17760232, + -0.17166932, + -0.398322, + -0.048962414, + 0.65776414, + 0.1027699, + 0.18211134, + 0.17629838, + -0.6043768, + 0.6302831, + -0.24834588, + -0.36605713, + -0.78877664, + 0.5127979, + 0.33305693, + -0.37917215, + 0.048247147, + 0.2061078, + -0.32533747, + 0.4034822, + -0.16670462, + -0.10830925, + 0.12508468, + -0.36289477, + 0.44944593, + -0.2842212, + -0.36477113, + -0.0005038884, + -0.008594878, + 0.43406487, + 0.019698672, + 0.3151072, + 0.20353642, + 0.37260592, + -0.18694735, + -0.39751375, + -0.33342054, + -0.043205958, + 0.31236318, + 0.32274875, + 0.20942324 + ], + "2025-05-20T05:32:27.65121", + "2025-05-20T05:32:27.65121", + 80.9870300293, + -88.608291626, + -25.0651397705, + "2", + "ID: 16380617
Cluster: 2
Chunk: Fallbeispiel\n26" + ], + [ + 11691, + "Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.\n\n\uf0fe Wahl des Startsimplex hat Einfluss welches lokale Minimum\ngefunden wird\n\uf0fe Wahl des Startsimplex beeinflusst Konvergenz\n\uf0fe Fehlender Konvergenzbeweis\n\uf0fe Z.B. Stagnation um nicht-optimalen Punkt\n\uf0fe rauschempfindlich7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill-Simplex mit Zielfunktion mit additivem Rauschen s:\nMin [ f(x) + s ], x in RN\nBeispiele\n\uf0fc Double Precision Numerik: \u03c3 \u2248 10-16,\ns\n\uf0fc FEM-Simulation: \u03c3 \u2248 10-3 - 10-6.\n\ns\nBest-Practice\n\uf0fc Anwender (Sie!)\n\nm\u00fcssen das Rauschlevel kennen.\n\n\uf0fc Toleranzen (ftol, xtol) an das Rauschlevel anpassen.\n\n257.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nNichtlineare Regression mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.2\nNichtlineare Gleichungen l\u00f6sen mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.3\nSchnittpunkte zweier Kreise:\n- M1: Kreis um (1,2) mit Radius 3,\n- M2: Kreis um (2,0) mit Radius 2.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\n267.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIhre Aufgaben ist es einen Satelliten am Ort (x,y) so zu\npositionieren, dass er sich im Gravitationsfeld der 3\nM3 M1 Planeten nicht bewegt.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\nM2\n277.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 2 linearen\nUngleichheitsbedingungen\nMin [ x 2 + x 2 ]\n1 2\nx + x \u2265 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n287.", + 18240, + 13135318, + null, + "md", + null, + [ + -0.8539323, + -0.3307703, + -0.12917906, + -0.9902739, + -0.6676355, + 1.2118105, + 0.029592108, + 0.22852649, + -0.17469743, + -0.2932766, + -0.4693811, + -0.11940551, + 0.7137473, + 0.2901251, + 0.11043404, + 0.908476, + 0.36449328, + 0.45342174, + 0.025286831, + -0.7366027, + 0.21817313, + 0.121300094, + -0.063033216, + 0.6805244, + -0.056355156, + 1.1634629, + -0.07685873, + 0.15959877, + 0.50525665, + 0.29150793, + -0.25445172, + -0.6690671, + -0.20523512, + -0.82977104, + 0.3563352, + -0.22521439, + -0.055333816, + 0.10446757, + -0.66474366, + 0.2739571, + -1.2048552, + 0.71865845, + 0.7710559, + -0.5285966, + -0.37474403, + 0.62919843, + 0.21234348, + -0.8845423, + 0.34341902, + -0.5314544, + -0.55283594, + 0.5398582, + 0.1483026, + 0.08643797, + 1.0448908, + -0.6574854, + -0.052272893, + -0.17243429, + 0.1937595, + -0.26126102, + 0.0018535145, + -0.3073746, + -0.41983935, + -0.18200193, + 0.38417354, + 0.16707216, + 0.24584267, + -0.587863, + 1.2997599, + -0.10888686, + -0.060016632, + -0.08661074, + 0.267574, + -0.704792, + -0.4264942, + 0.056719884, + 0.33332884, + -0.05404637, + 0.030310921, + -0.66497105, + -0.13663104, + -0.15877385, + -0.57147807, + -0.20301479, + -0.04582368, + 0.14640829, + 0.12857454, + 0.25900522, + 0.4936216, + -0.8481777, + 0.28817445, + 0.064124696, + 0.308181, + -0.18608971, + 0.57060826, + 0.3012161, + -0.37862927, + -0.48801196, + 0.7178086, + -0.17961763, + -0.40522397, + 0.6990168, + 0.0657973, + -0.11710049, + -0.0011175182, + 0.12663013, + -0.5562408, + 0.29009256, + -0.41211224, + 0.10546668, + 0.30870074, + -0.9476551, + -0.25377896, + 0.046802565, + 0.516503, + -0.4708044, + -0.6607292, + 0.14340347, + -0.008903671, + -0.13664433, + 0.62353945, + 0.62722576, + 0.40940917, + -0.48435742, + 0.3643537, + 0.34011084, + 0.35744524, + -0.1707079, + -0.47676253, + -0.027979672, + -0.20821664, + 0.7428249, + 0.27519116, + -0.30784094, + 0.17479691, + -0.014693338, + 0.1411259, + 0.39841288, + 0.79728043, + -0.3491399, + -0.40213922, + -0.023051064, + -0.7960245, + -1.1290884, + 0.8073704, + -0.10773207, + 0.5747593, + 0.5743768, + -0.012330806, + -0.18897803, + -0.29474765, + -0.28917527, + -0.22540466, + 1.1526271, + -0.26830465, + 0.31087938, + 0.57019883, + 0.50171554, + 0.27794668, + -0.33585072, + -0.46899793, + -0.15659447, + -0.3947235, + 0.55163974, + 0.31508547, + 0.11217903, + -0.048128955, + 0.4202875, + 0.9236831, + -0.6605115, + 0.05304746, + 0.15674524, + 0.41011816, + -0.37552556, + -0.33173123, + 0.6716921, + 0.2558303, + -0.4818378, + 0.18594816, + 0.0007131919, + 0.41329402, + 0.17399296, + -0.47084534, + -0.17998151, + -0.34639797, + -0.013318166, + 0.56613696, + -0.5874696, + 0.20158185, + 0.775353, + -0.25868744, + 0.4274549, + -0.077302046, + -0.12218476, + -0.35930172, + 0.38415802, + -0.5625155, + -0.25774255, + -0.7325902, + -0.07573832, + 0.4881325, + -0.17410725, + 0.113852486, + -0.51690894, + -1.1485411, + -0.13748063, + 0.07226144, + -0.438347, + -0.6821974, + 0.28296417, + 0.15697421, + -0.76283795, + 0.10213634, + 0.13776281, + -1.0331091, + 0.2651925, + -0.3273425, + -0.32598922, + -0.89425045, + 0.42123505, + 0.3685753, + -0.2249591, + -0.11343601, + -0.13806412, + 0.1803881, + -0.035908714, + 0.11074939, + 0.35891697, + 0.24697809, + 0.67905563, + -0.46093196, + -0.0006635301, + -0.93066126, + -0.5365966, + -0.70628923, + -0.02438766, + 0.49086237, + 0.97896796, + -0.3070281, + -0.22930408, + 0.08843623, + -0.16792898, + -0.13884707, + 0.19552639, + -0.0054828264, + -0.47570893, + 0.1002188, + -0.18127248, + -0.1659772, + -0.029073749, + 1.0081661, + -0.7932603, + -0.1398586, + 0.43807134, + 0.055818368, + 0.10311201, + -0.3436117, + 0.43811664, + -0.3337317, + -0.4697453, + -0.09803013, + 0.050909538, + 0.6488485, + 0.4691379, + -0.07474828, + 0.51605666, + 0.021235768, + -0.20607299, + -0.03636157, + 0.37672293, + -0.6621385, + -0.39643347, + 0.0284052, + 0.011475243, + -0.38171962, + 0.10258137, + -0.42724732, + 0.3204122, + -0.38582945, + 0.022227645, + 0.53133196, + -0.038270857, + 0.019247912, + -0.5201451, + -0.096027754, + 0.63741094, + -0.4234219, + 0.11903067, + 0.30968446, + 0.7273011, + -0.09628929, + 0.2104124, + 1.7123475, + 0.29152635, + -0.39565703, + 0.4309969, + 0.27129102, + 0.027772307, + -0.012917746, + -0.13817286, + 0.21852678, + 0.4427994, + 1.0466827, + 0.24490747, + -0.13999616, + 0.29003304, + 0.29087174, + 0.31205013, + -1.1982964, + 0.5554931, + -0.3398022, + -0.24828468, + 1.0044819, + -0.018342126, + 0.12007397, + 0.22041944, + 0.16844928, + -0.03415539, + -0.122829184, + -0.0946976, + -0.22604668, + 0.36866996, + -0.48646772, + -0.5032041, + -0.54520965, + -0.039527424, + 1.1881297, + -0.75655437, + -0.36670423, + 0.46194798, + -0.7714345, + 0.10680521, + 1.0212977, + 0.64594954, + -0.1603657, + -0.75962853, + 0.088238984, + 0.12746783, + -0.34640595, + -0.111966506, + -0.5498046, + 0.47423226, + 0.6737331, + 0.81994224, + -0.15194172, + -0.9810642, + 0.6281481, + 0.2638703, + 0.34571162, + -0.07662763, + 0.08777786, + 0.089661, + -0.2738688, + -0.02496216, + 0.08768957, + -0.025267363, + 0.4369758, + -0.3054504, + -0.7089642, + -0.052577622, + -0.36445695, + -0.31912082, + 0.029207751, + 0.2231015, + -0.05916048, + 0.32243025, + 0.09068123, + 0.25242484, + -1.0004787, + -0.4810502, + -0.4497958, + -0.17003125, + 0.19690004, + 0.46112937, + -0.70414835, + -0.954975, + -0.531729, + 0.23604356, + -0.17421484, + 0.5195362, + 0.32563728, + -0.6052952, + -0.034563992, + 0.6952429, + -0.12622835, + 0.3757859, + 2.210436, + 0.05575467, + -0.21591124, + 0.48180717, + -0.24929328, + -0.009028427, + -1.0700771, + 0.9492843, + -0.4551821, + -0.11906175, + 0.011096896, + 0.23998976, + 0.5420355, + -0.541951, + -0.11319184, + 0.33359554, + 0.0067634284, + -0.17258698, + -0.25769466, + -0.11171642, + -0.053563103, + 0.3705832, + 0.2992101, + -0.18909258, + 0.32066053, + 0.06419146, + 0.33446407, + -0.14366686, + 0.5514692, + -0.2767424, + -0.011084981, + 0.74445415, + 0.04612382, + 0.024323262, + 0.49389562, + 0.12573642, + 0.09823174, + 0.21492262, + 0.09247469, + -0.18888505, + -0.29879305, + -0.19315186, + -0.15440288, + -0.063416995, + 0.30787528, + -0.38133115, + -0.6392689, + 0.4884597, + -0.21302314, + 0.14290631, + 0.22060981, + -0.17246923, + 0.5647294, + -0.952493, + 0.27725315, + -0.4761065, + 0.20459834, + -0.9706806, + 0.18279941, + -0.16547751, + -0.29651493, + 0.9360133, + -0.29710135, + 0.30295104, + 0.021210246, + 0.1265139, + -1.025202, + -0.00423479, + -0.32674876, + -0.0045534503, + 0.012643382, + -0.17434269, + 0.82136047, + 0.20685478, + -0.17122549, + -0.23198067, + 0.038438853, + -0.020254105, + 0.2264987, + -0.5891883, + 0.41899672, + 0.47540382, + 0.09821603, + -0.6208373, + -0.05333429, + -0.30125338, + 0.6349436, + 0.3263192, + 0.17828625, + -0.5503541, + -0.20873262, + 0.13530502, + -0.28734863, + -0.012235507, + 0.6608583, + 0.43597317, + 0.23524818, + -0.7935008, + 0.66546136, + -0.35884187, + -0.12345234, + 0.1361944, + -0.82158834, + -0.09604049, + 0.31083137, + -0.27783045, + 0.2291076, + -0.14838076, + 0.10377172, + -0.8920105, + -0.16834962, + 0.32825252, + 0.35769495, + 0.21138068, + -0.36266732, + -0.6994964, + 0.59414804, + -0.18047675, + 0.8896697, + -0.932381, + 0.41734526, + -0.22673348, + -0.3478503, + -0.82368726, + 0.37821192, + 0.23006038, + 0.56045026, + 0.15717992, + 0.18756339, + 0.4392076, + 0.37728527, + 0.74689555, + 0.2711612, + -0.0107919015, + 0.4081654, + -0.2302883, + -0.6257982, + -0.3955772, + 0.0720519, + -0.23252282, + -0.30029458, + -0.1256409, + -0.033585265, + -0.2892841, + -0.7019023, + 0.21407972, + 0.4948519, + -0.34811056, + -0.35162103, + 0.5198878, + -0.5156027, + -0.054893225, + -0.5352376, + -0.3290039, + 0.0044410303, + 0.15053213, + 0.51284194, + 0.68666065, + 0.16754827, + -0.20434666, + 0.61329836, + -0.37491137, + 0.13694091, + -0.25655106, + -0.5891634, + -0.6456966, + -0.20287995, + 0.07054655, + -0.41948473, + -0.82718194, + -0.02633674, + -0.32714024, + 0.14060801, + -0.224685, + 0.30559784, + 0.0027803853, + 0.23669116, + -0.35289177, + 0.8975639, + -0.21738997, + -1.0228249, + 0.07177607, + 0.027710877, + 0.48485088, + -0.56254023, + -0.25009972, + -0.055140972, + -0.29248986, + 0.5119693, + 0.7629399, + 0.21801546, + 0.22889154, + 0.24045353, + 0.042715732, + -0.81041133, + 0.36119652, + 0.15088333, + -0.23406988, + 0.8263721, + 0.10161446, + -0.0286174, + -1.013361, + 0.0003558434, + -0.094068766, + 0.1915522, + 0.009240007, + 0.16866004, + 0.122570336, + -0.26186597, + -0.2552872, + -0.015016392, + 0.08968281, + -0.36750963, + -0.042740975, + 0.13635609, + 0.14577833, + -0.0018900186, + -1.0160899, + 0.036228113, + 0.0360646, + 0.13371255, + 0.22093202, + -0.18241423, + 0.13462572, + -0.21801919, + -0.6632644, + 0.026182778, + 0.31401616, + 0.24546833, + -0.34779152, + 0.040351465, + 0.34583205, + 0.054369178, + 0.055393714, + 0.08294205, + 0.4134052, + 0.081470616, + 0.14861283, + 0.27115917, + 0.18866162, + 0.16845837, + -0.021494392, + 0.099451095, + 0.07424253, + 0.95509243, + -0.25892913, + 0.25775316, + 0.38492036, + -0.013016466, + 0.24116403, + -0.13615704, + 0.05505497, + 0.34371993, + 0.23904353, + -0.026003577, + -0.7104476, + 0.19803251, + 0.26665705, + -0.8165034, + 0.35992035, + -0.16680469, + -0.12579165, + -0.25848532, + 0.333437, + 0.025177982, + 0.54053015, + -0.22570892, + 0.09275298, + 0.25448912, + 0.13054141, + -0.2504904, + 0.65355086, + 0.111077905, + -0.89662915, + -0.18503861, + -0.1598213, + 0.09600135, + 0.07544291, + 0.17908715, + 0.45135447, + -0.014711715, + -0.2550139, + -0.17830606, + 0.074247524, + 1.2081397, + -0.46689355, + 0.83391845, + -0.0044292435, + 0.059199993, + 0.020237623, + -0.29666564, + 0.25264922, + -0.7275058, + 0.5693076, + -0.42580548, + -0.5936979, + -0.23509559, + 0.3380488, + -0.21339679, + -0.8561462, + -0.010283865, + 0.27283502, + -0.28172326, + -0.45496535, + -0.60595846, + 0.26207897, + -0.16874057, + 0.5199169, + -0.47076005, + -0.010878742, + -0.21448271, + -0.35704887, + 0.35907978, + 0.012331411, + -0.4195977, + 0.45830023, + -0.712868, + 0.090470836, + -0.37428328, + -0.6885767, + 0.17281593, + 0.71904624, + -0.6291649, + 0.027349655, + 0.63686544, + 0.26528955, + -0.6863695, + 0.4341926, + -0.25721896, + 0.35229698, + -0.9061378, + 0.13891628, + 0.0949385, + -0.07906965, + -0.708987, + -0.5152282, + 0.99203545, + -0.69226795, + -0.13550156, + -1.044257, + 0.1306884, + -0.43655202, + 0.072960645, + -0.15455963, + 0.3981174, + 0.09782165, + 0.43952686, + -0.5311164, + 0.018301092, + 0.06927353, + -0.07306424, + -0.46071357, + -0.21516946, + 0.4504313, + 0.3953615, + -0.25762764, + 1.3180257, + -0.6727208, + 0.24842943, + 0.5909595, + 0.20929565, + -0.31214345, + -0.8138272, + 0.2508304, + -0.14077395, + 0.09348574, + 0.4390254, + -0.06093407, + -0.31585816, + 0.47952282, + -0.026074342, + 0.33190444, + 0.25328937, + -0.04103063, + -0.4574495, + 0.32518375, + -0.09280743, + -0.4933892, + 0.3822643, + -0.96908087, + -0.06862748, + 0.25046936, + 0.122330815, + 0.012352629, + -0.6950765, + -0.010044392, + -0.510493, + 0.22464427, + -0.031305045, + 0.60303587, + -0.041433718, + 0.49063748, + -0.23677336, + -0.42168263, + 0.17090912, + -0.115027994, + -0.36493713, + 0.4284914, + 0.61894584, + 0.8096411, + 0.25358936, + -0.06364979, + 0.5419338, + -0.355439, + 0.14945783, + -0.52066106, + -0.10302207, + -0.17608032, + 0.30358034, + 0.13875003, + -0.92178655, + 0.47635734, + -0.27064168, + -0.09240817, + 0.16573635, + 0.098099686, + -0.53834814, + -0.16004665, + -0.14474769, + -0.15828626, + 0.17819116, + -0.19228017, + -0.2808586, + -0.26726532, + -0.0784762, + 0.46395785, + -0.06449352, + 0.9677993, + 0.5073941, + -0.06740641, + -0.23361844, + -0.12698081, + -0.3789773, + -0.35317147, + 0.079996295, + -0.23919804, + -0.4674, + 0.29450154, + 0.6108493, + 0.7914115, + 0.38596317, + -1.7401052, + 0.14437976, + -0.116127826, + -0.8036505, + 0.35684612, + -0.48441285, + -0.52011204, + 0.012298875, + 0.5166489, + -0.16617712, + 0.24665621, + -0.71546894, + 0.08881588, + -0.34679535, + -0.20071504, + -0.15859972, + 0.23782808, + -0.30312216, + 0.68573743, + 0.042305555, + 0.73770624, + 0.5338654, + -0.3809266, + 0.55638367, + -0.22498071, + 0.03636074, + 0.0626437, + 0.18838617, + 0.07567531, + -0.060166974, + -0.0295854, + 0.35850775, + 0.572571, + 0.24513787, + -0.051831484, + 0.1213973, + -0.112081885, + 0.34386083, + 0.058734886, + 0.2123028, + -0.055206463, + -0.17410697, + 0.60592633, + 0.05375205, + 0.15969065, + 0.15879674, + -0.102624334, + -0.126789, + 0.13526292, + 0.43777296, + 0.8610023, + 0.17073205, + -0.7510893, + 0.32480875, + -0.08541776, + -0.69455945, + -0.1597112, + -0.1819969, + -0.300733, + 0.11109846, + -0.13106734, + 0.08822577, + -0.37106177, + -0.4596391, + 0.03113477, + 0.30333388, + -0.5363646, + -0.14879338, + 0.33768055, + -0.1673053, + 0.06134403, + 0.35559994, + 0.06956534, + 0.15744735, + -0.30650443, + -0.13260618, + -0.015691921, + 0.3035733, + -0.10864216, + -1.006285, + -0.1242965, + -0.024743553, + 0.345779, + 0.95479035, + 0.7164414, + 0.39680153, + -0.10696702, + 0.33961576, + 0.15845573, + -0.2561929, + 0.4507866, + -0.28375417, + -0.266434, + 0.42573124, + 0.7140197, + 0.26412898, + -0.47233257, + 0.0609061, + -0.50316334, + 0.2650919, + 0.06679402, + -0.2051391, + 0.6297936, + 0.60798323, + 0.15328749, + -0.25645483, + -0.054280363, + -1.0851399, + -0.1001866, + 0.8691568, + -0.29896885, + 0.123388745, + -0.05633694, + 0.72462285, + 0.5712875, + 0.34482017, + 0.7591493, + 0.07931421, + -0.35412273, + 0.04981621, + -0.16635787, + -0.122769974, + -0.19719625, + 0.37630862, + 0.5441583, + -0.5635314, + -0.24857077, + 0.5087845, + -0.74433756, + 0.18029757, + 0.7445892, + 0.2758112, + -0.35397243, + 0.18015525, + -0.2172335, + -0.32496712, + -0.29521513, + 0.028378956, + -0.07124542, + -0.18528622, + -0.06909378, + -0.49163026, + -0.3099196, + 0.15995672, + 0.07900701, + -0.28048903, + -0.31614363, + 1.0528697, + 0.07577979, + 0.04577537, + -0.22928427, + 0.1569011, + 0.16317523, + 0.75248605, + -0.04671375, + -0.95274043, + 0.002933597, + 0.32739845, + -0.2379204, + -0.1554988, + -0.68585736, + -1.0556097, + -0.12285259, + 0.107579544, + -0.61704475, + 0.08091177, + 0.15216963, + 0.32288483, + -0.43015283, + -0.33495352, + 0.3046965, + -0.72467655, + -0.23765421, + 1.0631155, + -0.005374402, + -0.43808755, + -0.8345298, + -0.002856329, + -0.06577439, + 0.08860563, + 0.25293908, + -0.041033566, + 0.49888036, + -0.77757144, + 0.5774645, + 0.14536951, + 0.2508913, + 0.6025641, + -0.12386325, + 0.41703787, + 0.19879758, + -0.11734441, + 0.024749324, + -0.058259107, + 0.27312505, + 0.4034993, + -0.25216144 + ], + "2025-05-19T19:20:03.434216", + "2025-05-19T19:20:03.434216", + -53.5251121521, + -78.3175201416, + -78.8380432129, + "3", + "ID: 13135318
Cluster: 3
Chunk: Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Qu..." + ], + [ + 11692, + "1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n\n\n287.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 1 nichtlineare\nGleichheitsbedingung\nMin [ x 2 + x 2 ]\n1 2\nx = ( x \u2013 2 ) 2\n2 1\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\n\uf0e0 \u00dcbungen 7.2.3 \u2013 7.2.5\n297.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nMin f(x), x in RN\nf\u00fcr N = 1: Newton-Algorithmus\nx = x \u2013 f\u2019 \/f\u2019\u2019 = x \u2013 (f\u2019\u2019 )-1*f\u2019\nn+1 n n n n n n\nf\u00fcr N > 1: Newton-Algorithmus\nx = x \u2013 H-1 (x ) * gradf (x )\nn+1 n n n\nx = x \u2013 H-1 * gradf\nn+1 n n n\nWie f\u00fcr N=1: exakt falls f(x) quadratisch.\n\n307.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nFalls f(x) nicht quadratisch und wir haben einen guten Startwert in der N\u00e4he eines lokalen Minimus (konvexes Gebiet),\nf\u00fchren wir Iterationen durch\n\uf0e0 Beispiel \u00dcbung 7.3.1 in der Vorlesung\nWeiter: Um die Stabilit\u00e4t zu erh\u00f6hen f\u00fchren wir noch eine Schrittweiten-Steuerung ein (hilft, wenn der Startwert nicht so gut\nsein sollte).\n\nx = x \u2013 c*H-1 * gradf\nn+1 n i n n\nmit 0 < c \u2264 1 steuert die Schrittweite (z.B. Backtracking).\n\ni\n\uf0e0 Hausaufgabe 7.3.2\n317.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nOder auch: Methode des steilsten Abstiegs\nIn der Praxis erweist sich die Bestimmung von H-1 als schwierig und aufwendig.\n\nn\n\uf0e0 H-1 durch etwas \u00abeinfacheres\u00bb n\u00e4hern.\n\nn\n\uf0e0 brutal einfache Idee : H-1 \u2248 1.\n\nn\nDamit ergibt sich der Steepest-Descent-Algorithmus mit Schrittweitensteuerung:\nx = x \u2013 c * gradf\nn+1 n i n\nmit c > 0 steuert die Schrittweite.\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n327.", + 18240, + 13504558, + null, + "md", + null, + [ + -1.1105303, + 0.06864798, + 0.71910334, + -0.18397726, + 0.40972143, + -0.7054399, + 0.120589584, + 0.06977714, + 0.17998672, + -0.5044099, + -0.14304009, + -0.3858181, + 0.32415226, + 0.1237356, + -0.23963083, + 1.1129233, + 0.052708745, + 0.17511317, + 0.24991876, + -0.7547415, + 0.3843258, + -0.39785877, + 1.0093063, + -0.030776199, + -0.021194581, + 0.54484457, + 0.12631112, + 0.22197092, + -0.37498313, + -0.050174035, + 0.039562397, + -0.15975536, + -0.49124312, + -0.16598295, + 0.23522797, + 0.08347469, + 0.01383692, + -0.31489384, + -0.2513137, + 0.92324513, + -0.6272385, + 0.43500167, + 0.0059109367, + 0.72570336, + 0.4175001, + 0.3460745, + -0.34581363, + -0.933015, + -0.9015244, + -0.17036553, + -0.71259964, + 0.6026952, + 0.2573188, + -0.38227403, + 1.1507255, + -0.42278057, + 0.107027724, + 0.33497873, + 0.44944993, + 0.64581823, + 0.7512649, + 0.20085537, + -0.23012249, + 0.07650302, + -0.033337962, + 0.6877012, + 0.24642086, + 0.25405875, + 0.23693666, + -0.17440178, + -0.42489418, + 0.45982778, + 0.15547007, + 0.426689, + -0.49688837, + 0.5602239, + 0.08272434, + 0.34826818, + 0.49954945, + 0.15854914, + 0.76822096, + -0.83671963, + -0.18912646, + -0.5483409, + 0.8681829, + 0.16226247, + 0.09169914, + 0.14857711, + 0.5682444, + -0.7125236, + 0.31854573, + 0.3060955, + 0.20546785, + 0.34898773, + -0.13908522, + 0.007658899, + 0.46188152, + -0.06491899, + -0.7243664, + 0.46457994, + -0.15860783, + 0.43750754, + 0.6044529, + -0.37283018, + 0.47789022, + -0.3771025, + 0.20851119, + 0.428959, + 0.5048888, + 1.2367183, + 1.3042477, + -0.8239044, + 0.2385473, + -0.21983874, + 0.14078932, + -0.5094715, + -0.67042434, + -0.17447896, + -0.3901482, + 0.33460575, + 1.1141772, + -0.2561117, + 0.19750887, + 0.6886864, + 1.6684773, + 0.02923269, + -0.15279582, + 0.9326503, + -0.4296056, + 0.1846486, + 0.32710308, + 1.330249, + -0.0437195, + -1.09105, + 0.46557397, + 0.23119096, + 0.34279835, + -0.7199694, + -0.0203703, + 0.4215241, + -0.15992266, + -0.31821904, + -0.044296265, + -0.4966639, + 0.11851539, + -0.27752948, + -0.8255361, + 0.05114995, + 0.3885741, + -0.21624427, + 0.3705124, + 1.0041915, + 0.111864805, + -0.122296736, + -0.48367423, + 0.5297337, + 0.131815, + -0.03928748, + -0.16495071, + 0.26176965, + 0.0054346323, + 0.50323594, + -0.50040245, + -0.06999241, + -0.008060186, + -0.8073232, + 0.20860928, + -0.5522947, + 0.80496764, + -0.69027996, + -0.2414091, + -0.4414382, + 0.41378978, + -0.039782956, + 0.10689332, + 1.1175846, + 0.95411474, + -0.44457474, + 0.2948665, + 0.16916165, + -0.2124489, + 0.2538707, + -0.54245025, + -0.23399425, + -0.038313173, + 0.5289067, + 0.25330588, + -0.0041545033, + -0.32928854, + 0.080382414, + 0.22808817, + 0.026764773, + 0.18684019, + -0.04875319, + -0.39426947, + 0.02765483, + -0.8620125, + -0.03506009, + -0.44637594, + -0.0065398254, + 0.28961688, + -0.014371585, + -0.09094451, + -0.75126004, + -0.33307344, + 0.18529226, + -0.18279, + -0.2580526, + 0.614034, + 0.52030194, + 0.096954666, + 0.13978429, + -0.68663496, + -0.12573875, + -0.26340753, + 0.041743796, + 0.35363537, + 0.5310409, + -0.6506557, + -0.41990474, + 0.11847888, + 0.080018155, + -0.42661023, + -0.1720043, + 0.15585846, + -0.3275026, + -0.7652888, + 0.21869761, + 0.7052209, + 0.07132223, + -0.32732052, + -0.88082504, + 0.4424097, + 0.18308438, + -0.3803045, + 0.17524582, + -0.10954079, + 0.16287203, + 0.18842126, + 0.2991001, + -0.10375947, + -0.22646366, + -0.379678, + -0.05731316, + 0.08060378, + 0.042814624, + 0.25985786, + -0.19103247, + -0.19963361, + 0.28536248, + 0.4675508, + -0.10763236, + -0.067371756, + 0.16797325, + 0.8809258, + 0.34084556, + -0.20532188, + 0.37432745, + -0.34357798, + -0.16109258, + -0.29194498, + 0.3963269, + 0.53382224, + 0.16745435, + -0.39808068, + -0.52530694, + 0.3193195, + 0.6577648, + 0.18169902, + 0.61751497, + 0.038960297, + 0.2771535, + -0.31212342, + 0.2185865, + -0.37959614, + -0.37459677, + -0.48089066, + 0.033542864, + 0.2014372, + -0.4467752, + 0.2874396, + -0.44939238, + -0.58884734, + 0.29352498, + -0.08405174, + -0.22757122, + -0.84223396, + 0.105583124, + 0.53204596, + -0.13129118, + 0.13974395, + -0.6793457, + 1.4364417, + 0.14187251, + 0.033263985, + 0.55714124, + -0.039508656, + 0.026957631, + -0.23280469, + -0.28100026, + -0.07807992, + 0.5626843, + 0.19889536, + 0.95478994, + 0.019520806, + 0.1190522, + 0.61991984, + -0.34258968, + -0.97703403, + 0.36503848, + -0.3636386, + -0.17807478, + -0.047974244, + -0.49023667, + 0.87109727, + -0.20398958, + -0.69574606, + 0.22627309, + 0.93216777, + 0.27485296, + 0.35733914, + 1.1352645, + -0.1904095, + -0.9590375, + -0.45522413, + -0.25020036, + 0.47553122, + -0.13236031, + -1.140802, + 0.3533325, + 0.115164146, + 0.021325402, + 0.24647698, + 0.3125776, + 0.40119627, + 0.004510872, + -0.10840787, + 0.5121397, + -0.46261674, + -0.1767803, + -0.43057775, + 0.48331007, + -0.11961335, + 0.7821024, + -0.34275153, + -0.43428624, + 1.785649, + 0.9062295, + -0.13764703, + 0.5240913, + 0.28149745, + 0.09768115, + 0.092371866, + 0.121861994, + 0.33287755, + 0.35508943, + 0.1760278, + 0.010705935, + -0.2576356, + 0.22005095, + -0.6873311, + -0.3854786, + -0.2190774, + -0.564494, + 0.18347648, + -0.034773797, + -0.10258124, + -0.5740123, + -0.49859574, + -0.40598017, + -0.3312833, + -0.75496787, + -0.19651318, + 0.49373418, + -0.8207393, + 0.6566869, + -0.25271675, + 0.33018592, + -0.18147878, + 0.37913716, + 1.5860394, + 0.08559178, + 0.34965065, + 0.3799571, + -0.32417408, + 0.2926337, + 1.6300108, + -0.5999941, + 0.35125878, + 0.15870203, + -0.6013923, + 0.45150664, + 0.43582046, + 0.034671213, + -0.5870819, + -0.4218538, + 0.12212667, + 0.43651658, + -0.5772359, + -0.13933365, + 0.3609054, + 0.4227867, + -0.49589485, + -0.017801076, + -0.12664871, + -0.35934168, + 1.0178355, + -0.6611188, + 0.30662876, + -0.7993474, + 0.05708495, + 0.18055493, + -0.52790695, + -0.10943671, + 0.21233857, + -0.24715361, + 0.09498349, + 0.6254128, + -0.1633935, + 0.4771983, + 0.08875072, + 0.37884033, + -1.1512824, + -0.50297457, + -0.02422661, + 0.052352056, + 0.022915248, + -0.11444991, + -0.53335506, + 0.37040818, + 0.013516463, + -0.08985581, + 0.30061057, + 0.23975256, + -0.5424321, + -0.08811154, + 0.60525125, + 0.22729263, + -0.1127169, + -0.7324823, + -0.01788015, + -0.19729184, + -0.24238019, + -0.34710553, + 0.27686417, + 0.05814019, + -0.09468774, + 0.99828213, + 0.28084224, + 0.19601768, + -0.39963362, + -0.3878728, + -0.6471038, + 0.10939485, + -0.7038361, + -0.32483304, + -0.3746746, + 0.56944644, + 0.19136593, + 0.35877007, + -0.22494099, + -0.18444227, + -0.19393775, + -0.3107166, + 0.18459973, + -0.4619838, + 0.23389874, + 0.5245513, + -0.14129108, + -0.16505247, + 0.2787431, + 0.2650945, + -0.17652607, + -0.06749089, + -0.0879906, + -0.36439008, + 0.40752098, + -0.2456465, + -0.3904669, + 0.5087926, + 0.2542777, + -0.5549849, + -0.054044507, + -0.10270067, + 0.28421572, + 0.4005112, + 0.9951851, + 0.21875261, + -0.06905327, + -0.24362625, + -1.1253903, + -0.7941209, + -0.19581716, + 0.29784214, + -0.08279458, + -0.434929, + 0.11714066, + 0.18987226, + 1.0101738, + 0.36477405, + 0.1711286, + 0.039741315, + 0.58920157, + 0.16777097, + 0.25667265, + -0.7657878, + 0.028106496, + -0.095135815, + -0.111176625, + -0.48422214, + -0.29852122, + 0.5058516, + -0.52110934, + -0.15612105, + -0.2714553, + 0.7762082, + 0.4034827, + 1.0955511, + 0.1230042, + -0.036324833, + -0.07041969, + -0.24916604, + 0.3776015, + -0.0328333, + -0.016303156, + -0.26461494, + -0.72711647, + 0.40330595, + 0.38047758, + 0.8074109, + 0.25145197, + 1.2523563, + 0.7509255, + 0.6390604, + -0.2509333, + 0.019083098, + 0.40929186, + 1.1858506, + -0.3352076, + 0.07303175, + -0.3796691, + -0.15612851, + 0.29420686, + -0.5696329, + -0.07644815, + -0.11020284, + 1.2661014, + -0.110909276, + -0.12385713, + -0.304861, + -0.123733155, + 0.3145373, + -0.84466094, + 0.22060211, + -0.48925275, + 0.021709561, + 0.15450649, + -0.6535776, + 0.11252625, + -0.4578085, + 0.8174044, + -0.6616547, + -0.29430827, + -0.22683533, + 0.22489397, + -0.020723335, + 0.25271899, + -0.6728952, + -0.21852478, + -0.030229092, + -0.08496626, + 0.67081326, + -0.029307371, + 0.06445503, + 0.41632047, + -0.65324926, + -0.031140655, + 0.1576566, + 0.349308, + 0.059017055, + -0.24748975, + -0.18549292, + 0.3074503, + -0.84079504, + 0.53918856, + -0.26113427, + 0.3280797, + 0.10809176, + -0.41438866, + 0.35363057, + 0.37396908, + 0.2270721, + -0.20765495, + 0.15395367, + 0.24940708, + 0.26949677, + -0.08326705, + -0.1516345, + -0.695781, + -0.122069776, + 0.42573872, + -0.42601365, + -0.32304358, + 0.11542632, + -0.39539874, + -0.011652432, + 0.064125314, + -0.135322, + 0.032941982, + -0.28824317, + -1.0082732, + -0.96823835, + 0.045787625, + -0.7411304, + 0.09935844, + -0.39734027, + 0.06672399, + -0.78965956, + 0.37459344, + -0.05420341, + 0.3853338, + -0.2734422, + 0.2113229, + -0.026246049, + -0.31864506, + 0.12599391, + -0.5994519, + -0.86117154, + 0.468274, + -0.6032009, + 0.09601588, + 0.41312465, + -0.3209449, + -0.09754009, + -0.4155526, + -0.5519665, + -0.29636472, + -0.2988368, + 0.21510585, + 0.23539805, + -0.15514478, + -0.28797078, + 0.090194196, + -0.21402475, + -0.4084905, + 0.39665645, + 0.39178103, + -0.44511044, + -0.04487765, + 0.37703162, + 0.2490856, + 0.1627794, + 0.31969994, + -0.23555893, + -0.2837101, + -0.23952943, + -0.40743858, + -0.021726249, + 0.41632074, + -0.8384392, + 0.10615899, + -0.19193977, + -0.09152026, + -0.29496303, + -0.8093186, + -0.66044396, + -0.061609194, + -0.093335465, + -0.21034856, + 0.23910706, + 0.52565265, + 0.24312948, + 0.4801275, + -0.3970605, + 0.46387064, + -0.4250062, + 0.5445057, + -0.114666395, + -0.2465068, + -0.8529581, + 0.7368318, + 0.14763872, + -0.120240636, + -0.54934037, + 0.30194625, + -0.29251516, + 0.031740792, + -0.034460746, + -0.2542066, + 0.4168505, + -0.9671753, + -0.23457798, + -0.7521877, + 0.35867122, + -0.48896146, + 0.17949642, + -0.25024804, + -0.20612532, + 0.19266412, + 0.04053463, + -0.19520822, + -0.15738888, + 0.12050636, + 0.6526376, + -0.37272647, + 0.31211823, + 0.14120765, + -0.3414366, + -0.16834323, + -0.75103384, + -0.079080775, + -0.8201376, + -0.66915274, + 0.17578691, + -0.275671, + -0.39475325, + -0.7329108, + 0.23844656, + -0.07115889, + -0.17620638, + -1.0856447, + -0.04089323, + 0.65981185, + -0.69207156, + -0.16327246, + -1.0689657, + -0.3518647, + -0.029521162, + -0.5622195, + 0.23544198, + 0.28452763, + -0.18528506, + -0.2528425, + -0.6097377, + -0.11817554, + -0.42296225, + -0.076926894, + -0.91704166, + 0.42127052, + 0.6000304, + 0.2510145, + 0.6921302, + 0.6602589, + 0.44675988, + 0.0014550984, + 0.4131712, + 0.24870285, + 0.19958766, + -0.073433496, + 0.29807794, + -0.17399168, + 0.45872694, + 0.28791225, + -0.43678206, + 0.1775451, + 0.93074065, + 0.7116844, + 0.5602035, + 0.20689188, + -0.38162875, + -0.56573653, + 0.12636757, + 0.31378677, + -0.45671836, + -0.023393795, + -0.678749, + -0.05573964, + -0.15586704, + -0.48272502, + -0.033282816, + -0.18048027, + -0.32637072, + -0.00801719, + -0.15639505, + -0.33848011, + 0.27257282, + 0.28096053, + 0.08820255, + -1.3359532, + -0.21391992, + 0.27776542, + 0.049850587, + -0.3309166, + 0.45910522, + -0.02199335, + 0.4694218, + 0.36279297, + 0.052174777, + -0.3495441, + -0.6839846, + 0.67633975, + -0.26291156, + 0.13073125, + 0.4577639, + -1.3472443, + -0.13164295, + -0.15087444, + -0.0017664209, + -0.3549154, + 0.31502098, + 0.14565648, + -0.0042060614, + -0.17033404, + -1.2440819, + 0.14316964, + -0.74710107, + -1.2358834, + -0.5794253, + -0.46833697, + 0.38450956, + -0.5598925, + 0.28171653, + -0.3090802, + 0.17262709, + -0.6327182, + 0.7142397, + -0.4575551, + 0.025754094, + -0.06805709, + -0.33854884, + -0.110400066, + -0.053272896, + -0.17558861, + -0.2335123, + 0.048465207, + 0.0932051, + 0.35556418, + -1.1568239, + 0.19264808, + -0.27289864, + -0.118323386, + -0.28286612, + 0.11987373, + 0.1847139, + -0.26473874, + 0.8681787, + 0.26198548, + -0.61988455, + 0.084982365, + -0.51875407, + -0.23560423, + 1.2545265, + -0.46645012, + -0.17804015, + -0.21264696, + 0.37829927, + 0.25311852, + -0.36393213, + 0.33603215, + -0.5894358, + 0.57282907, + 0.4165216, + -0.02604153, + 0.13038047, + -1.1411875, + 0.2403083, + 0.35721028, + -0.33274633, + -0.4946579, + 0.002807986, + 0.5879238, + -0.11253195, + 0.15760615, + -0.3483478, + 0.48679915, + 0.29527426, + 0.19538006, + 0.2486549, + 0.5151205, + -0.19653648, + 0.04460551, + 0.0074242596, + -0.9558667, + -0.5589962, + -0.19593254, + -0.38615942, + 0.4342917, + 0.70803744, + 0.4229658, + 0.25892523, + -0.19517276, + 0.59552723, + -0.013569218, + 0.39016718, + 0.07971147, + -0.5770758, + -0.3586735, + -0.08851129, + -0.17234452, + -0.04626517, + 0.21732575, + -0.47080076, + -0.5404438, + 0.038682777, + 0.29666921, + 0.3711045, + -0.35874394, + -0.4749197, + -0.18558252, + -0.14671841, + -0.23174514, + 0.019119544, + -0.0956137, + -0.2965467, + 0.37110817, + -0.25848454, + 0.06383601, + -0.32240415, + 0.027894374, + -0.059088536, + 0.15717682, + 0.1391348, + -0.086573765, + -0.020101182, + 0.3025839, + -0.032154508, + 0.17125145, + 0.3595258, + 0.51970357, + 0.5070759, + -0.60239834, + 1.0206281, + 0.20162502, + -0.11372903, + 0.8567957, + 0.6117821, + -0.0672604, + -0.39884433, + 0.12446738, + -0.027697533, + 0.2409701, + -0.12455918, + 0.45693174, + 0.30949667, + -0.27644885, + -0.037209578, + 0.050358504, + 0.49108413, + -0.62826383, + -0.10608076, + 0.22363849, + 0.26198286, + -0.17074172, + 0.69984496, + 0.060127042, + -0.02401757, + 0.53988266, + 0.44726926, + -0.053410646, + 0.41890454, + 0.8419215, + 0.67046434, + 0.041737787, + 0.35325855, + -0.086139575, + -0.47227225, + -0.8417843, + -0.60097176, + -0.18495233, + -0.23059589, + -0.19238016, + 0.08996245, + 0.0025395602, + -0.24765252, + -0.1088828, + -0.033133797, + 0.33764148, + -0.029799249, + -0.16948846, + -0.38876405, + 0.60200536, + 0.70088184, + 0.08807853, + 0.29296952, + 0.72140115, + -0.069158435, + -0.29968968, + -0.18085001, + -0.37848234, + 0.6036309, + -0.2623494, + -0.31688255, + -0.22401378, + -0.4470465, + 0.12137386, + -0.40893215, + 0.06824043, + 0.13132559, + -0.62592393, + -0.831249, + -0.12786356, + 0.1536017, + -0.11009611, + 0.61655146, + 0.18915254, + 0.1509565, + 1.2955658, + -0.0410868, + -0.17221646, + 0.20039602, + 0.6918029, + -0.11669619, + -0.018825464, + -0.27719763, + -0.36874655, + -0.067892864, + -0.077446, + -0.07295153, + -0.18485007, + -0.44056126, + -0.4891745, + 0.4581921, + 0.14438732, + 0.28514725, + 0.010154054, + -0.0017137006, + 0.057335004, + 0.32786247, + -0.0017977841, + 0.037860237, + -0.33589762, + -0.3430869, + -0.5623107, + -0.22093064 + ], + "2025-05-19T19:20:18.17469", + "2025-05-19T19:20:18.17469", + 39.4575691223, + 69.3716964722, + -100.0548782349, + "5", + "ID: 13504558
Cluster: 5
Chunk: 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein m..." + ], + [ + 11693, + "mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n\n\n327.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nAusserdem ist die Richtung des Gradienten bei nicht-isotropen Minima (dies ist die Regel) schlecht.\n\nisotrop: Gradientenrichtung gut nicht-isotrop: Gradientenrichtung schlecht\n.\n\nDies f\u00fchrt zu dem \u00abklassischen\u00bb Zig-Zag-Routen, die nicht erw\u00fcnscht sind.\n\n337.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nIdee einer SEHR einfachen Schrittweitensteuerung:\nFalls Schrittweite zu gross: Reduziere Schrittweise iterativ um die H\u00e4lfte, so lange bis f < f .\n\nn+1 n\nFalls Schrittweite evtl zu klein: Verdopple Schrittweite so lange bis f < f , dann reduziere Schrittweite noch 1-mal.\n\nn+1 n\n\uf0e0 test_Steepest_Descent.py\n\uf0e0 \u00dcbung 7.7.2\n34\u00dcbungen\n35\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\n36\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,", + 18240, + 6084764, + null, + "md", + null, + [ + 0.21610712, + -0.34170783, + -0.2582149, + -0.13907842, + -0.61066616, + 1.0078603, + -0.3240201, + 0.6873087, + -0.29100716, + 0.42602944, + -0.19834957, + 0.07046136, + 0.19968116, + 0.05360639, + 0.4098373, + 0.8089135, + 0.38811648, + 0.020720284, + -0.29712686, + 0.09276265, + 0.24396716, + 0.49379405, + 0.14850694, + 0.8405345, + -0.42497858, + 0.54847485, + 0.5315522, + 0.2563539, + 0.3031277, + 0.32693532, + -1.0098323, + -0.54120606, + 0.2183274, + -0.36752322, + -0.03983044, + -0.3212026, + 0.4653786, + 0.6545438, + -0.20859239, + 0.24754442, + -0.26476225, + 0.20086898, + 0.27902398, + 0.30439684, + -0.511996, + 0.48540705, + -0.2720875, + -0.27440175, + 0.54314584, + -0.82200634, + -0.19053495, + 0.029926717, + 0.398478, + -0.5969824, + 0.37821722, + -1.0161233, + 0.11919589, + -0.0028134063, + -0.2873751, + 0.43212482, + 0.050068364, + -0.09143582, + -0.02543508, + -0.29476294, + 0.49181077, + -0.7949642, + 0.8474369, + -0.45979714, + 0.1913284, + -1.1775037, + -0.13730288, + 1.1601539, + -0.17315605, + 0.06397681, + 0.4084017, + -0.3379514, + -0.042783346, + 0.1312747, + -0.5110681, + 0.5032175, + 1.011381, + -0.35415074, + -0.29897973, + 0.3352387, + 0.046979457, + 0.9281235, + 0.7794734, + 0.979208, + -0.62746745, + -0.06440086, + 0.02056218, + 0.4631862, + -0.41932887, + -0.14032038, + 0.4387039, + 0.31654036, + -0.21557382, + 0.23203044, + 0.6833416, + 0.7943702, + -0.3042444, + 0.19797122, + 0.96993744, + -0.9783734, + 0.46330336, + -0.046329584, + -0.46998185, + -0.23301779, + -0.58868104, + 0.21932237, + 0.69747776, + -0.6695301, + -0.5490598, + 0.20945036, + 0.4844848, + -0.46872902, + 0.47233516, + 0.02829311, + -0.16637819, + 0.15635177, + -0.37190187, + -0.9155665, + 0.04265388, + 0.06619617, + 0.6524881, + 0.5039427, + -0.04062849, + -0.25350952, + 0.3672974, + 0.27789792, + 0.2866974, + -0.64593893, + 0.7398978, + -0.68064785, + 0.2511096, + -0.6026129, + -0.24463147, + -0.20240761, + -0.11480774, + -0.4233029, + -0.5244546, + -1.3436545, + -0.045248013, + -0.7590879, + 1.0389054, + 0.24050002, + 0.02171108, + 0.5076742, + 0.35538733, + -0.2934364, + -0.36472857, + 0.090743154, + 0.26938072, + 0.92038983, + -0.25277385, + 0.07719758, + 0.34196678, + -0.07766472, + 0.18402007, + -0.17247602, + 0.45100924, + -0.4953551, + -0.6399714, + -0.12482366, + 0.50583816, + 0.17909491, + -0.31236172, + -0.5700879, + 0.8142332, + 0.081353895, + 0.6612395, + -0.31171215, + 0.6694775, + 0.18347411, + 0.6949669, + -0.08658582, + 0.81987506, + 1.4820253, + 0.4921878, + -0.40194663, + 0.42631844, + 0.25177687, + -0.49247232, + 0.4686098, + -0.884753, + 0.25234473, + 1.2933986, + -0.049991243, + -0.18223089, + 0.44750527, + 0.044140544, + -0.13212512, + 0.03908568, + 0.22012796, + -0.30675158, + 0.08215075, + -0.9997249, + 0.46272606, + -0.057759956, + 0.46804577, + -0.65390915, + 0.18121451, + 0.18792771, + -0.3917414, + -0.58103204, + -0.106285244, + -0.43567497, + 0.0029532826, + -0.5842319, + 0.7649751, + -0.15150426, + -0.14852601, + -0.41726714, + 0.45418084, + 0.65493613, + -0.2777432, + 0.5461147, + -0.91013145, + 0.10615094, + 0.57800585, + 0.43953797, + 0.52388126, + 0.59976745, + -0.3265308, + 0.06088296, + 0.024082754, + 0.27500105, + 0.78999335, + 0.81131923, + -0.34176257, + -0.41218174, + -0.48943624, + -0.5650195, + -0.09200231, + -0.7478293, + -0.49558005, + 0.5952393, + -0.11126892, + -0.39854655, + -0.02397759, + 1.0572264, + -0.10263875, + -0.18896714, + -0.7087554, + 0.42055285, + -0.005795934, + 0.0016986951, + -0.5826482, + 0.17145146, + 0.04782698, + 0.008605219, + -0.33104646, + 0.31809986, + 0.6931411, + -0.059445824, + -0.35173127, + 0.33814853, + 0.71478164, + -0.8456227, + 0.18025818, + -0.59973043, + -0.6825434, + 0.15589005, + -0.28807, + -0.1170959, + 0.6949042, + 0.32213587, + 0.30828536, + -0.56129205, + 0.22549807, + -0.2769241, + 0.8331133, + -0.63590044, + 0.3773966, + -0.40455693, + -1.0846455, + -0.31960315, + -0.012908582, + 0.8286142, + -0.42579967, + 0.07487789, + -0.491373, + -0.11581444, + -0.018495994, + -0.49328724, + 0.07291444, + -0.1354525, + 0.6570908, + 0.018441334, + -0.7136275, + -0.394664, + -0.7392031, + -0.33123988, + 0.18986902, + -0.44218844, + -0.03672663, + 0.19268346, + 0.07882285, + -0.12050502, + -0.4031803, + 0.48461413, + -0.5274426, + -0.3404508, + -0.74830246, + 0.6537432, + -0.20468289, + 0.09166819, + -0.121248245, + -0.7021304, + 1.00578, + -0.72209996, + -0.6414535, + 0.58992034, + 0.22223103, + 0.632037, + 0.08978217, + 0.5589308, + 0.35982734, + -0.9687631, + 0.34386966, + -0.32487908, + -0.034297094, + 0.41395962, + -0.3107426, + -0.13023803, + -0.4908955, + 0.7269075, + -0.43536326, + -0.60122454, + -0.29983085, + -0.5400913, + 0.041919954, + -0.21864145, + 0.7213906, + -0.111735985, + -0.47600487, + -0.0031837225, + -0.3050074, + -0.7322953, + 0.16978635, + -0.24244471, + 0.0001225525, + 0.91895986, + -0.13676165, + -0.80691725, + -0.048720796, + 0.7108992, + -0.009051092, + -0.100255065, + -0.09516011, + 0.5588628, + 0.5564072, + -0.25045562, + -0.4960916, + -1.1323867, + 0.11936732, + 0.39202914, + -0.10291657, + -0.18153173, + 0.7844175, + -0.970192, + -0.75276583, + -0.80025136, + -0.2930739, + -0.20164618, + -0.049356233, + -0.6070099, + 0.87396836, + -0.83136827, + -0.34843773, + -0.39875785, + -0.3896835, + -0.52458715, + 0.88109076, + 0.033109926, + 0.36121753, + -0.2378299, + 0.40353322, + -0.359295, + 0.06513582, + 0.18539643, + -0.65898174, + 0.17032634, + -0.61761093, + -0.4670989, + 0.42029515, + 2.492098, + -1.0685512, + -0.25783846, + -0.061305285, + -0.4614005, + -0.43839523, + -1.0307093, + -0.06282803, + -0.17336224, + -0.045120586, + 0.5554863, + 0.35667646, + 1.083029, + -0.2838388, + -0.80199116, + 0.23104411, + -0.08114969, + 0.18404332, + -0.4801129, + -0.29103512, + 0.040294632, + -0.7168218, + 0.3373778, + 0.3376303, + 0.2860886, + 0.22465688, + 0.82164073, + -0.28746676, + 0.102047175, + -0.076054074, + 0.07718318, + 0.30595335, + -0.21119013, + -0.8824734, + 0.74263585, + 0.23403302, + 0.2242701, + -0.13988382, + 0.3347621, + -0.47260973, + 0.03750425, + -0.21823752, + 0.5403979, + 1.0854841, + 0.18132886, + -0.9692171, + 0.21211968, + 0.08338691, + 0.32460546, + 0.40595904, + 0.4655614, + -0.39682814, + -0.31085533, + -0.111354485, + -0.11753611, + -0.81394947, + 0.21717328, + -1.0845712, + -0.44836223, + -0.8466177, + -0.19974634, + 0.9882812, + 0.0890016, + 0.5522668, + -0.06767276, + 0.39504752, + -0.4622807, + 0.4381723, + 0.15280905, + 0.42732584, + -0.47989413, + 0.4109313, + 0.4594461, + 0.33422354, + 0.37408018, + 0.030283134, + 0.026917215, + 0.57763326, + -0.3505468, + -0.4145103, + -0.16357224, + -1.1120538, + -0.25640076, + -0.9251214, + -0.2698165, + 0.16597259, + 0.50696796, + 0.52712345, + -0.22624606, + -0.6591132, + 0.0057306103, + 0.12591052, + 0.113775805, + -0.4102314, + 0.2006317, + 0.62404746, + 0.41583973, + -0.42746988, + -0.48486865, + 0.09273217, + -0.27590284, + 0.055217236, + -0.061483607, + 0.17805272, + 0.37678847, + 0.18731388, + 0.36124834, + 0.65263, + 0.42178708, + 0.24066418, + -0.030739963, + 0.63995516, + -0.8225461, + -0.72261834, + -0.52842116, + 0.50984836, + -0.030361123, + -0.1577363, + 0.1648093, + -0.19359025, + -0.034949284, + 0.2988552, + -0.36837912, + -0.841917, + 0.030720156, + 0.79013705, + -0.08412952, + -0.08798884, + 0.24427596, + 0.030530788, + 0.25383794, + -0.112018175, + -0.73104775, + -1.1856406, + -0.4954528, + -0.092962936, + 0.0026716962, + 0.288796, + 0.14233585, + -0.1019603, + 0.022725329, + 0.5512363, + 0.2314963, + 0.33837482, + -0.23922195, + 0.9716413, + 0.019702293, + -0.33858964, + -0.38239527, + -0.47916412, + -0.18356237, + 0.6759993, + 0.1446533, + 0.2868742, + 0.09440738, + 1.0093181, + 0.107552245, + 0.29649833, + -0.12859958, + -0.36744794, + 0.38876885, + -0.43942642, + 0.59571046, + 0.06015724, + -0.2921609, + 0.9253388, + -1.4466951, + -0.07155932, + -0.3801673, + -0.3237101, + -0.30034134, + 0.4394218, + 0.21598208, + 0.13728024, + -0.4547667, + -0.50926316, + 0.7725967, + -0.5529058, + 0.22600242, + -0.76590276, + -0.38595828, + -0.5944012, + -0.12059869, + -0.5490608, + -0.1074872, + -0.019830607, + 0.44994834, + -0.19807145, + 0.31822562, + -0.015663408, + -0.36639303, + 0.44426286, + 0.9203479, + -0.42189762, + 0.251023, + -0.12467627, + 0.10124249, + 0.51018065, + -0.11293939, + -0.28565067, + -0.58540344, + -1.2013627, + -0.6528829, + 0.10190184, + 0.18413442, + -1.2284454, + -0.047073707, + -0.04774294, + 0.00879465, + 0.6565978, + -0.16963653, + -0.15605667, + 0.40658137, + -0.3324082, + 0.6163044, + 0.41124812, + 0.22242068, + -0.18809533, + -0.9417567, + -0.2874769, + -0.06535176, + 0.67364764, + -0.08812605, + 0.41780424, + -0.5377658, + -0.0015818104, + 0.31167334, + -0.19430287, + 0.1621927, + 0.4404119, + -0.24636857, + -0.07045509, + 0.48035216, + -0.09852341, + 0.093290314, + -0.10909206, + -0.4603803, + -0.14152586, + 0.95571095, + 0.62744784, + -0.45938164, + -0.6931386, + -0.30443108, + -0.6424439, + 0.39389208, + -0.40803915, + 0.19551261, + 0.5531618, + 1.0679308, + -0.06768836, + -0.8153055, + -1.0045842, + -0.25520268, + 0.22451389, + 0.57086205, + 0.38129184, + -0.09262459, + 0.1768108, + -1.6889908, + 0.61961186, + -0.18790792, + 0.17168213, + -0.40459812, + -0.37758875, + -0.8249033, + 0.04190822, + -0.26293743, + 0.40416068, + 0.12001578, + -0.12035736, + -0.19455516, + 0.2879577, + -0.16793215, + -1.2323643, + -0.25752723, + 0.2659017, + -0.8278869, + 0.5417745, + 0.07752211, + 0.6846488, + 0.052604392, + -0.25198662, + 0.21213739, + -0.003738284, + 0.45335928, + -0.41089243, + -0.021020848, + -0.29493326, + -0.38712823, + 0.0833468, + 0.41104013, + 0.58993864, + -0.5304365, + 0.36153173, + -0.6706966, + -1.2766887, + 0.053258628, + -0.5208078, + -0.97999114, + -0.458128, + 0.15535569, + -0.4879516, + -0.35154346, + 0.25341767, + -1.1727337, + 0.388078, + -0.3207617, + -0.1792395, + 0.46917552, + 0.55204815, + -0.11608875, + 0.51117605, + -1.0087101, + -0.5363407, + 0.21466093, + -0.15020578, + 0.81653947, + -0.11078435, + -0.25104895, + -0.036922105, + 0.13896334, + -0.4325813, + -0.08875872, + -0.93452597, + -0.051369436, + 0.17095909, + 0.10732886, + 0.58508897, + 0.12577686, + 0.65640986, + -0.17895316, + 0.35242403, + 0.057221774, + -0.30416933, + 0.3452596, + 0.14200568, + -0.38665596, + -0.6789423, + -0.30404127, + -0.73584646, + 0.49731708, + -0.09426406, + 0.1128646, + 0.047390196, + -0.64774776, + 0.3171811, + -0.22691575, + 0.13129006, + 0.07500176, + -0.46215487, + 0.7174379, + 0.68840504, + 0.00710728, + 0.589038, + -0.57648844, + 0.08382875, + -0.91340125, + 0.39176834, + 0.29309952, + -0.5130027, + 0.696098, + -0.08430301, + -0.7817625, + -0.04281693, + 0.015537277, + -0.47967958, + 0.71796507, + -0.1570086, + -0.7742213, + 0.2018594, + 0.408714, + -0.4905717, + 0.6462781, + -0.16660312, + -0.69596094, + 0.06355047, + 0.19466506, + 0.12645929, + 0.06850716, + -1.210323, + 0.38836396, + -0.3030721, + -0.0051871464, + -0.41546592, + -0.7614092, + -0.22136779, + -0.41378182, + 0.44157362, + -0.4242948, + -0.38165456, + 0.33663103, + 0.18641976, + -0.39836776, + 0.7113516, + 0.5622426, + 0.08546512, + 0.035378065, + 0.47266406, + -0.456017, + 0.31999475, + -0.4385763, + 0.34555626, + -0.06886948, + 0.4506342, + -0.3744443, + -0.92741245, + 0.1837462, + -0.046406038, + -0.5281768, + 0.66094655, + -0.3484537, + 0.56631184, + -0.076211855, + -0.19109938, + -0.18815644, + -0.2087199, + 0.3351898, + -0.6983129, + -0.4601016, + 0.46921366, + -0.47281116, + -0.26249737, + -0.55167055, + -0.17602403, + -0.0702986, + -0.18690544, + -0.529135, + 0.50735116, + 0.28183684, + 0.14409986, + 0.2657736, + -0.15059504, + -0.19967055, + 0.60094106, + 0.118063115, + 0.2720132, + -0.18535979, + 1.0942022, + -0.60162324, + -0.383341, + 0.80736315, + 0.5034312, + 0.4619883, + 0.3257523, + -0.26554084, + -0.10119011, + -0.6222226, + 0.71736336, + -0.26540396, + -0.46771964, + 0.053038403, + 0.25171256, + 0.43529844, + 0.02142495, + -0.04689499, + 0.44853666, + 0.26083484, + -0.116901405, + 1.1373184, + -0.38815048, + -0.48569024, + 1.0568948, + 0.1556075, + -0.7552762, + 0.09545909, + -0.56781906, + 0.6930021, + 0.62896156, + -0.509037, + 0.13022387, + 0.06489645, + 0.29460526, + -0.4683541, + -0.3275022, + -0.5653447, + 0.28005564, + 1.314961, + -0.45528728, + 0.3595664, + -0.07831573, + 0.21623048, + 0.8490763, + -0.44413608, + -0.2838844, + 0.7364958, + -0.55966, + 0.36763892, + -0.09257196, + 0.5086046, + 0.1791147, + 0.12651272, + -0.0659446, + 0.35642254, + 0.4960022, + -0.3261274, + 0.3582364, + -0.4566354, + -0.9513329, + -0.23286606, + -0.1476529, + 0.097513385, + 0.26567224, + 0.23415206, + 0.6542146, + -0.65086573, + 0.34176886, + -0.25682765, + 0.13040833, + -1.3093685, + -0.1956301, + -0.16950317, + -0.6464086, + 0.11677717, + 0.004370507, + 0.19164248, + 0.015051959, + 0.6294746, + -1.0208678, + 0.98100454, + 0.120617986, + 0.095772706, + -0.08292487, + 0.28645653, + 1.3256584, + 0.67311364, + 0.20377639, + -0.024075877, + -0.8684684, + 1.0630727, + 0.11346477, + 0.6664604, + 0.053850546, + 0.20282528, + -0.61186343, + 0.15420926, + 0.49206918, + 0.89120436, + -0.50234985, + 0.32309282, + -0.7069893, + -0.27246547, + 0.32513028, + 0.821497, + 1.1217507, + 0.3474736, + -0.72642416, + 0.43438447, + 0.91971123, + -0.6991543, + 0.5903043, + 0.36776185, + 0.91723686, + -0.15330768, + 0.34444672, + 0.4993723, + 0.005135016, + 0.2397139, + -0.19212697, + -0.26486704, + -0.20071188, + 0.77758276, + -0.32986975, + 0.85055673, + 0.4470376, + -0.355585, + 0.5791537, + -0.18879102, + 1.0138875, + -0.6377575, + -0.47679564, + 0.23453407, + -0.21484935, + -0.06277963, + 0.016267639, + -0.038522463, + -0.2910481, + -0.08775177, + -0.32365826, + -0.120528236, + 0.6254488, + 0.36157244, + -0.15227316, + -0.15612845, + -0.1488147, + 0.5264894, + 0.6869712, + -0.47951394, + -0.5887315, + 0.29084662, + 0.3772035, + -0.9243756, + 0.7098194, + -0.26495278, + 0.18187267, + -0.33764955, + -0.9423133, + -0.4527006, + 0.5557752, + -0.2779557, + 0.21573702, + -0.046992008, + -0.24766928, + 0.28135338, + -0.20724025, + 1.1065139, + -0.33606735, + 0.14305514, + 0.16318558, + 0.13807955, + -0.3045083, + 0.4627882, + 0.50714403, + 0.07161705, + -0.12695299, + 0.46468607, + 0.30766177, + -0.26252046, + -0.35145894, + -0.119316, + -0.95560217, + 0.009730957, + -0.2715275, + -0.10523389, + 0.14546426, + 0.29558143, + 0.6752123, + 0.27917668, + -0.8822073, + 0.391304, + -0.13735482, + 0.8109309, + 0.6757575, + -0.06867047, + 0.41263005, + 0.05722613, + 0.49767062, + -0.54687214, + -0.530074 + ], + "2025-05-19T19:20:35.651734", + "2025-05-19T19:20:35.651734", + 45.3172531128, + -89.4484939575, + 84.5875778198, + "3", + "ID: 6084764
Cluster: 3
Chunk: mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr ..." + ], + [ + 11694, + "05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\n38\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren.\n\nVersuchen Sie eventuell vorhanden mehrere L\u00f6sungen durch Variation des Anfangswertes zu finden:\n(a)\n(b)\n(c)\n39\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t)\nauf.\n\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-\nAlgorithmus.\n\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3\nDesign-Variablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit\nden Startwerten von (b)\n40\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\n41\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .", + 18240, + 16279813, + null, + "md", + null, + [ + 0.13278152, + -0.31135443, + -0.06157794, + -0.0959831, + -0.2155047, + 0.18859595, + -0.16959096, + -0.34411773, + -0.041826297, + -0.31756315, + -0.9122811, + -0.22444451, + 0.0037292335, + 0.19952506, + 0.5708837, + 0.2232977, + 0.6871961, + 0.60550606, + 0.30983904, + -0.8043447, + -0.27264884, + 0.05291005, + 0.78058624, + 0.6034761, + -0.6272017, + 1.1743269, + 0.23666318, + -0.18208024, + -0.078005254, + 0.4810142, + -0.9538864, + -0.016191434, + -0.7600871, + -1.2925054, + -0.23352908, + 0.39050117, + 0.45212886, + 0.25021592, + -0.64383024, + 0.47578508, + -1.1893016, + 0.611, + 0.77812654, + -0.414382, + -0.45942408, + -0.096408054, + -0.054397367, + -1.1181612, + -0.52113163, + -0.5145301, + -0.020105878, + -0.2325208, + 0.7031965, + -0.2588882, + 0.35841376, + -0.3014021, + -1.2043331, + 0.1690771, + -0.3878942, + -0.15058325, + 0.101697564, + 0.5955356, + -1.0562714, + 0.29252487, + 0.46541068, + -0.814918, + 0.8833382, + -0.29397434, + 1.08242, + 0.30045655, + -0.8468625, + 0.13749094, + 0.49681777, + -0.81653535, + -0.12798364, + 0.43576333, + -0.24409834, + 0.10145719, + -0.5168317, + 0.19488369, + 0.5306045, + -0.45292297, + -0.73087025, + -0.69558203, + 0.17853343, + 0.10927347, + 0.37190104, + 0.7577907, + 0.60335314, + -0.77994347, + 0.6115885, + 0.34977943, + 0.54180825, + 0.12498224, + -0.36913645, + 0.53334236, + -0.4988092, + -1.0403296, + 0.5792681, + 0.061288983, + 0.40794128, + 1.0559, + 0.258757, + -0.25419834, + -0.5606047, + -0.21674825, + -0.93479306, + 0.157637, + -0.074171975, + 0.30134892, + 1.088072, + -0.5859262, + -0.50312537, + 0.05258239, + 0.156779, + -0.7095016, + -0.12304297, + 0.27743536, + -0.1041456, + 0.1653678, + 0.791414, + 0.056318734, + -0.08245245, + -0.14135614, + 0.49738526, + 0.122735225, + 0.39718607, + -0.04237839, + -0.16887578, + 0.13292146, + -0.022606276, + 0.23233768, + -0.35401678, + -0.65738916, + 0.5876043, + -0.508946, + -0.28810933, + 0.40388715, + 0.4115173, + -0.12137085, + 0.4695793, + -1.6207632, + -0.6038363, + -1.229742, + 0.797075, + 0.5272327, + -0.14275688, + 0.5298482, + -0.11964016, + -0.68863976, + 0.12506014, + -1.4978632, + -0.22885236, + 1.2072421, + 0.0974693, + -0.051257845, + 0.71246576, + 0.3622653, + 0.22051454, + 0.42224854, + 0.15144718, + 0.1825112, + -0.29761747, + -0.18305585, + 0.5251316, + 0.3295107, + -0.6035769, + 0.3900929, + 1.4213151, + -1.1422626, + 0.25678518, + -0.24574405, + -0.17083566, + -0.04310607, + -0.33728582, + 0.23379776, + 0.16465096, + -0.6068399, + 0.43697876, + -0.066386655, + 0.51313287, + 0.55818623, + 0.14550602, + 0.0973894, + -0.41228867, + -0.43490815, + 0.39972666, + -0.16020359, + -0.04254414, + 0.31778383, + -0.4034773, + 0.18023324, + -0.15604183, + -0.57508016, + 0.6193066, + 0.17061692, + -0.6821827, + -0.11551791, + 0.19050148, + 0.12501691, + 0.92914134, + -0.046413276, + 0.72909325, + -0.380835, + -0.56400025, + -0.5728295, + -0.47299182, + -0.35795212, + -0.49700177, + -0.28979057, + 0.70127416, + -0.386043, + 0.5415522, + 0.5190307, + 0.027266027, + 0.1646466, + -0.22251202, + -0.8237839, + -1.0840379, + 0.23848295, + 0.27224803, + -0.021960858, + -0.1262675, + 0.142936, + 0.35766637, + 0.4548736, + 0.5258867, + 0.7544729, + 0.43750295, + 0.56583893, + -1.2316846, + -0.441197, + -0.71860844, + -0.42223158, + -0.5449957, + -0.038461443, + 0.6518616, + 0.29518667, + -0.7981539, + 0.29493442, + 0.29684487, + -0.2280859, + 0.4668674, + -0.30376026, + -0.21520835, + 0.37391156, + -0.38781515, + 0.58167017, + 0.11238755, + 1.1677887, + 0.5656577, + -0.48828962, + -0.043962434, + 0.9605713, + 0.5708154, + -0.1718336, + 0.41549957, + -0.24311967, + -0.5279203, + -0.15245146, + -0.43650907, + -0.25063822, + 0.23182863, + 0.02608934, + -0.48055077, + 0.19021404, + 0.97594094, + 0.4846406, + 0.4892656, + 0.12171269, + -0.34528613, + 0.16845417, + 0.3418432, + 0.7761509, + 0.38849103, + 1.0743829, + -0.22417736, + 0.6509449, + 0.15705523, + -0.9244966, + 0.1973379, + -0.49305004, + -0.2134893, + -0.57629377, + 0.3116263, + 0.68125594, + -1.3141932, + 0.05633321, + 0.122974694, + -0.36968324, + -0.6122818, + 0.027975544, + 1.3510925, + 0.21716595, + -0.13250229, + -0.045343764, + -0.052563004, + 0.087762594, + -0.26348215, + -0.28107244, + 0.5681984, + 1.2921271, + 0.03895397, + 0.20326939, + -0.22359481, + 0.35828394, + -0.2452621, + 0.3715069, + -1.3277928, + 0.24986061, + -0.65413326, + 0.6187351, + 0.5947165, + -0.20966962, + 0.19751352, + 0.57628644, + 1.0361384, + 0.09293172, + -0.49023482, + -0.19207585, + 0.84557027, + 0.86853635, + -0.19354211, + -0.68885565, + 0.26510537, + -0.30220044, + 0.30309957, + -0.6198408, + -0.8082925, + 0.15333593, + -1.3863586, + -0.4162713, + 0.10639246, + 0.33652335, + 0.60040927, + 0.25492328, + -0.5644359, + -0.058602702, + -0.8191221, + -0.26590186, + -0.066837594, + 0.05863843, + 0.29919574, + -0.025955364, + -0.28309247, + -1.145227, + 0.5131561, + -0.11837989, + -0.22334346, + 0.2209174, + 0.8494119, + 0.2671587, + 0.10611507, + -0.34933817, + -0.49108464, + -0.55123174, + 0.6790414, + -0.013424285, + 0.5778683, + 0.3862689, + 0.44127566, + -0.6727534, + 0.3004817, + -0.5143808, + 0.62404203, + -0.021827735, + 0.066406675, + 1.1396846, + -0.7236167, + 0.10403601, + -0.11855886, + -0.40562212, + -0.34204504, + 0.40084398, + -0.43653268, + -1.1060885, + -0.5283608, + 0.12733313, + -0.39405432, + -0.030514546, + 0.2832729, + -0.18029456, + -0.22412203, + 0.4341524, + -0.2078506, + -0.26816472, + 2.0870132, + -0.3144638, + 0.4421623, + -0.16097236, + -0.84609985, + 0.08704701, + 0.06598862, + 0.3318594, + -0.65281576, + 0.1200654, + 0.80431306, + 0.27277377, + 0.62238586, + -0.28738427, + 0.027827363, + 0.34328768, + 0.104054585, + 0.22715525, + -0.31007516, + 0.05561182, + 0.2275968, + 0.40966305, + 0.3929777, + -0.49554378, + 0.35867617, + 0.33300272, + 0.24004875, + -0.24718708, + 0.1605895, + -0.33531177, + 0.08650768, + 0.5509718, + 0.39403036, + -0.12731834, + -0.32734218, + 0.4602166, + -0.26366913, + -0.28178495, + 0.29246563, + -0.08327724, + 0.18574832, + -0.32617146, + -0.72519934, + 0.36393702, + 0.6194111, + -0.434605, + 0.16197982, + 0.5063121, + -0.11608957, + -0.5932591, + 0.60074997, + 0.30020532, + -0.32122838, + -1.1464648, + 0.36963856, + -0.258484, + -0.3240757, + -0.37507305, + -0.81534433, + -0.7781533, + 0.02148062, + 1.1315584, + 0.15528496, + 0.8833935, + 0.6972205, + -0.6685419, + -0.30832574, + -0.105755106, + -0.5330986, + -0.48839483, + -0.8983202, + -0.33653268, + 0.27870017, + 0.13802384, + -0.1289786, + -0.28357792, + -0.48529887, + 0.14804383, + 0.5671393, + -0.8907135, + 0.2928925, + 0.0938501, + 0.0067710653, + -0.6403894, + -0.1440139, + -0.21439463, + -0.8338955, + -0.18260229, + 0.11066741, + 0.00556558, + -0.06745806, + -0.015124917, + -0.30638534, + 0.26730973, + -0.46178108, + -0.27317092, + 0.36178884, + -0.13109958, + 0.47923997, + -0.36399624, + 0.494842, + 0.06134274, + -0.49330556, + 0.31668517, + 0.058342095, + -0.9186228, + 0.36583215, + 0.5066034, + 0.49339366, + -0.497808, + -0.07659338, + 0.69759226, + -0.4847431, + 0.7018075, + -0.70322704, + -0.5558381, + 0.14483123, + -0.3379312, + 0.5427033, + -0.59686476, + -0.34736636, + 0.1392045, + -0.27912822, + 0.13489726, + 0.31690472, + 0.19096076, + 0.34423745, + 0.6832738, + 0.45758986, + -0.2526263, + 0.61122006, + 0.86365396, + -0.46305776, + -0.6384415, + 0.85836315, + 0.19355962, + 0.31165552, + -0.502262, + 0.39932904, + 0.27671343, + -0.5547037, + -0.067833275, + 1.4531509, + 0.52446365, + -0.8414034, + 0.3728188, + -0.060749896, + -0.16210818, + 0.08857845, + 0.45471713, + -0.42862085, + 0.113973446, + -0.7683229, + -0.26931372, + -0.15292268, + -0.3414179, + 0.08634811, + 0.13814346, + 0.35907376, + 0.17385083, + 0.77899677, + -0.29347432, + 0.036382034, + 0.22914174, + -0.8451214, + -0.12352831, + -0.2731728, + 0.79904526, + -0.57232994, + -0.5880431, + -0.100686185, + 0.05056775, + 0.7263571, + -0.124723494, + 0.061887696, + 0.10561489, + -0.45702636, + -0.92749673, + 0.26338676, + -0.7206606, + -0.293469, + -0.34240994, + 0.07086856, + 0.2613831, + 0.113911375, + -0.41010347, + -0.21035689, + 0.046425324, + 0.81236374, + 0.09410357, + 0.2982619, + 0.3586251, + 0.02938283, + 0.21911958, + 0.20775308, + 0.20240535, + 0.27939186, + -0.36065298, + 0.7995263, + 0.060141884, + 0.12142134, + -0.716944, + 0.038572647, + -0.53842634, + 0.22529013, + 0.37635222, + -0.26122668, + -0.009716585, + 0.16900256, + 0.04834977, + -0.45682752, + -0.71560925, + -0.6909257, + -0.21666911, + -0.4594161, + 0.897729, + 0.27273157, + -1.1791021, + -0.41959184, + -0.52676094, + 0.4248587, + 0.26062524, + -0.37764415, + -0.27821213, + -0.7592299, + 0.513862, + -0.52372855, + -0.17803739, + 0.44616267, + -0.10160947, + -0.09384552, + 0.8631576, + 0.03715118, + -0.51367205, + 0.07143937, + 0.19396868, + 0.037239563, + 0.4836729, + 0.6816011, + -0.022967726, + 0.7085988, + 0.4703946, + 0.8301578, + 0.19264829, + 0.690792, + 0.16071585, + 0.6023079, + 0.99213284, + 0.4841313, + -0.80471087, + 0.1546302, + -0.54199815, + -0.0397847, + 0.48576903, + 0.11702671, + 0.2708296, + 0.3253973, + 0.17995015, + -1.1277666, + 0.8909336, + 0.54224765, + -0.010506406, + -0.058532394, + 0.6446838, + -0.0063757785, + 0.32187387, + -0.54558635, + -0.053988688, + 0.4862977, + -0.04170046, + 0.1857891, + -0.11987661, + 0.3399579, + -1.2227956, + -0.44210136, + -0.7543268, + -0.15403596, + 0.74466515, + -0.19297099, + 0.67184055, + 0.3578894, + -0.028506383, + -0.21201698, + -0.09409987, + 0.7894345, + -0.23917256, + 0.6158142, + -0.13363782, + 0.12613484, + -0.10123901, + 0.23612776, + 0.274582, + -1.279424, + 0.46554863, + -0.42464256, + 0.2833177, + -0.265592, + -0.23230657, + -0.9171607, + -0.0731343, + 0.056313045, + 0.34681985, + 0.10072088, + 0.3243995, + -1.0373851, + 0.06735458, + -0.30706966, + -0.24983689, + 0.14009961, + 0.023934279, + -0.89500135, + -0.35065505, + 0.12503356, + 0.660818, + -0.6808548, + 0.70910966, + 0.5763697, + 0.7176753, + -0.27255943, + 0.18725452, + -0.14876348, + 0.34974486, + -0.57060266, + 0.038431898, + 0.4080218, + -0.37856647, + -0.93564326, + 0.11181921, + -0.4627009, + 0.7925894, + -0.6229144, + -0.48980254, + 0.16342555, + -0.25391254, + -0.23103794, + -0.2844454, + -0.85310656, + -0.80359143, + -0.6040839, + -0.7253181, + 0.0026742183, + 0.28728622, + 1.148962, + -0.48792642, + 0.2842412, + 0.3645267, + -0.4648015, + -0.9213314, + 0.52954495, + -0.6035678, + 0.70151377, + -0.21445315, + 0.5055376, + 0.09093628, + 0.39359313, + -0.12688418, + 0.88431776, + -0.45495218, + 0.41177988, + 0.060649965, + 0.60405934, + -0.34124124, + -0.35883066, + 0.10259397, + 0.20392531, + -0.51252246, + 0.7340005, + -0.5167552, + -0.020560894, + -0.14322367, + 0.73816836, + 0.08452162, + 0.3366664, + -0.28547305, + -0.414286, + 0.2772928, + -0.27176413, + -0.33312863, + 0.019818522, + -0.6576307, + 0.23557869, + -0.14305007, + 0.33215767, + -0.5945065, + -0.5699586, + -0.95601267, + -0.44717252, + 0.015808532, + 0.7111184, + 1.0880994, + 0.14963348, + 0.42463624, + 0.24587406, + 0.45139757, + 0.06649259, + 0.237076, + 0.06986576, + 0.84835935, + -0.096683756, + 0.4504913, + 0.023005322, + -0.01268344, + 0.36110288, + 0.30280313, + -0.2742602, + -1.1210381, + -0.61601204, + 0.03838887, + 0.54113525, + 0.70907676, + -0.7621316, + 0.57458913, + -0.5426123, + 0.21902442, + -0.0943072, + -0.085781865, + -0.32712734, + 0.09240769, + -0.71261513, + -0.7671221, + -0.58039546, + -0.36024624, + -0.35377342, + 0.45254496, + 0.002359286, + 0.9285045, + -0.33838707, + -0.39363387, + -0.36997116, + -0.46203136, + -0.37905714, + -0.0467895, + -0.26566517, + 0.19194813, + 0.83236855, + -0.0074790865, + 0.04095209, + 0.35957527, + -0.517994, + 0.68622744, + 1.2182957, + -1.658386, + 0.66289836, + -0.5545988, + -0.52251, + 0.4986412, + 0.12483737, + -0.025293142, + 0.14066467, + -0.010007046, + 0.5071188, + -0.04086826, + -0.62265974, + -0.4074867, + -0.14956568, + 0.39330986, + 0.29001006, + -0.06392122, + 0.2368705, + 0.035587817, + -0.12486032, + -0.2010521, + 0.17419215, + -1.2080908, + 0.73933953, + 0.6563852, + -0.044244464, + -0.071389526, + -0.85518515, + 0.32533085, + -0.02053117, + 0.836703, + -0.103036515, + -0.24393842, + 0.33429235, + 0.31941554, + 0.5991585, + -0.6117182, + -0.10833903, + 0.35645992, + 0.52835494, + 0.38571927, + 0.038572073, + -0.26446277, + 0.25595635, + 0.41936666, + 0.5565293, + -0.4459373, + -0.16651413, + -0.5453741, + 0.020576378, + 1.0345913, + -0.24595225, + 0.07241665, + 0.36461794, + 0.09553152, + -0.55995953, + -0.10554329, + -0.06353788, + -0.5882064, + 1.0756981, + -0.38666967, + 0.15872802, + 0.007833134, + -0.27261806, + -0.27591252, + 0.106012255, + -0.13642198, + -0.10779178, + -0.011313897, + -0.2261298, + -0.14277282, + 0.30318618, + 0.28932336, + -0.19968621, + -0.100097135, + 0.3303197, + -1.3191462, + 1.121996, + -0.2981208, + -0.37089255, + -0.28362218, + -0.30452153, + 0.31841075, + 0.31817052, + 1.2421726, + 0.17694561, + 0.32516807, + 0.8151772, + 0.3517031, + 0.3440555, + 0.46692193, + -0.3421909, + -0.031560764, + -0.07589289, + 0.80694664, + 0.6548772, + -0.3370757, + 0.304637, + -0.4979766, + 0.344266, + 0.09269427, + 0.1716184, + 0.6808771, + 0.14945808, + -0.5239382, + -0.3867084, + 0.30532575, + -0.76076794, + -0.56818956, + 0.5785141, + -0.38831484, + -0.49397573, + -0.6799729, + 0.7531256, + -0.08720711, + -0.4836923, + 0.6610263, + -0.50706923, + 0.0682959, + 0.41493955, + 0.11092168, + -0.29508144, + -0.4484795, + 0.49708608, + 0.6466255, + -0.78818566, + -0.070279, + 0.006191928, + -1.2128088, + 0.3863935, + 0.8634359, + 0.3196931, + -0.29025665, + 0.44107005, + -0.68560696, + -0.1157624, + -0.2641405, + -0.5369768, + 0.22932513, + -0.40921497, + 0.54826427, + 0.39164785, + 0.4030525, + 0.4761254, + 0.79881006, + -0.6193539, + -0.047378656, + -0.14887397, + 0.33732706, + -0.21345767, + -0.7915791, + 0.061745115, + 0.08823355, + -0.55377394, + -0.1289217, + -0.60512155, + 0.05119316, + -0.056068514, + -0.21231407, + -0.28771895, + 0.030454079, + -0.0027018487, + -0.6767699, + -0.49564698, + -0.23213276, + -0.1649139, + 0.18415661, + 0.7115629, + -0.19208682, + 0.22399426, + 0.4609465, + -0.6305711, + -0.09469627, + -0.15506153, + -0.029517949, + -0.90091354, + -0.81262314, + 0.2414169, + -0.5996703, + 0.013060376, + -0.11032681, + 0.099153474, + 1.1478568, + -0.7937746, + 0.3976247, + 0.42185098, + -0.45602322, + -0.23627502, + 0.2156781, + 0.87443745, + -0.039890528, + 0.01381186, + 0.31067833, + -0.7053322, + -0.26480982, + -0.10581334, + -0.53060836 + ], + "2025-05-19T19:21:12.286366", + "2025-05-19T19:21:12.286366", + 118.2042999268, + 3.2703001499, + -47.7644805908, + "1", + "ID: 16279813
Cluster: 1
Chunk: 05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Dow..." + ], + [ + 11695, + ".\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n42\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\n(b) Stellen Sie damit die Newton-Iterations-Formel auf und programmieren diese in Python.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n43\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(c) Es sei a = 0.1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n44\u00dcbung 7.4.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.", + 18240, + 2278700, + null, + "md", + null, + [ + -0.3088199, + 0.3640352, + -0.31572556, + -0.5632599, + -0.8831732, + 0.1357588, + 0.2828112, + -0.073052764, + -0.14028428, + -0.4137379, + -0.3779284, + 0.22783622, + 0.6706066, + -0.056991823, + 0.40256593, + 0.05860323, + -0.27182338, + 0.73582864, + 0.04000853, + -0.95994973, + 0.3459747, + -0.008289742, + 0.791801, + 0.7151977, + -0.7154374, + 0.9411023, + -0.18865997, + -0.31734714, + -0.26258975, + -0.47804314, + 0.28099033, + -0.4079598, + -0.5721661, + -0.24909514, + -0.12890777, + -0.14122331, + 0.23889612, + -0.87130135, + -0.05149117, + 0.40285057, + -0.7891446, + 0.8133566, + 0.53938705, + -0.046355966, + 0.2888184, + 0.21963145, + 0.22220808, + -1.3960292, + 0.09103116, + -0.3063383, + -0.14920121, + -0.24261743, + 0.6040509, + -0.04994193, + 0.7676259, + -0.26639926, + 0.4522859, + 0.050208904, + -0.26670495, + -0.08939862, + 0.40578613, + 0.6614084, + -1.1288393, + -0.11489549, + 0.21283846, + -0.11688706, + 0.5288078, + -0.033631053, + 0.14976765, + 0.19768643, + -0.65979356, + 0.4471144, + 0.0056704655, + -0.09458379, + -0.112005964, + 0.0008882331, + -0.37963963, + 0.8810093, + -0.07736359, + 0.2620185, + 0.25588855, + 0.17052135, + 0.5200379, + -0.34820402, + 0.6814076, + -0.84188217, + 0.16602696, + 0.21277499, + 0.078822225, + -0.39773995, + -0.2619002, + 0.22882652, + -0.33049983, + -0.3447321, + -0.5935127, + 0.12364051, + -0.65231156, + 0.3024006, + 0.3214048, + 0.2883591, + 0.10383496, + -0.12549928, + 0.5816095, + -1.3210194, + -0.84840876, + -0.19548997, + -0.4598337, + 0.24828933, + -0.20160554, + 0.6754582, + 1.2274503, + -0.23909806, + 0.0061853193, + 0.25237063, + 0.50343853, + -1.0903183, + -0.40035185, + 0.7934746, + -0.20527695, + -0.18899569, + 0.48278388, + 0.31971702, + 0.6695269, + 0.25840232, + 0.52140886, + 0.066064216, + 0.23381665, + 0.33242688, + 0.42536396, + 0.68530387, + 0.5099268, + -0.082808204, + 0.67430466, + -0.09424926, + -0.07362352, + -0.23353042, + 0.10285139, + 0.042422168, + -0.07468959, + -0.47640082, + 0.14910409, + -0.5035368, + -0.65842396, + 0.17512524, + 0.15496688, + -0.18074897, + -0.36149305, + 0.32410088, + 0.20439592, + 0.050676465, + -0.263446, + 0.7949653, + 0.57088363, + 0.4200039, + 0.46859622, + 1.1394612, + 0.0546111, + -0.33434358, + -0.8402423, + -0.38273168, + 0.20940629, + 0.7083559, + -0.74333835, + -0.16562489, + -0.05041253, + 0.2802357, + -0.71080893, + 0.014414512, + 1.048351, + -1.312922, + -0.08374014, + -0.644255, + 0.19481163, + -0.10899393, + -0.13414355, + 1.0315136, + 0.23051096, + -0.74234325, + -0.02334758, + 0.042068914, + 0.6659071, + 0.29590544, + -0.6934806, + 0.4996118, + -0.3005992, + 0.6479202, + 0.9435401, + 0.17789787, + -0.33025825, + 0.012468271, + -0.47057074, + -0.14862373, + 0.03098984, + 0.71897036, + -0.2255914, + 0.6405778, + -0.24902289, + -0.83683836, + -0.13380063, + -0.3805582, + -0.1733455, + -0.3476708, + 0.035452522, + -0.24631682, + -0.59985507, + 0.23694268, + -0.22281624, + -0.46051657, + 0.72813493, + 0.020002536, + 0.468085, + 0.03300228, + 0.5319899, + 0.44964796, + -0.044908475, + -0.17248815, + -0.44756606, + 0.024516732, + -0.55600876, + -0.36660847, + 0.50394934, + 0.14802715, + -0.09132658, + 0.5415638, + 0.3663799, + -0.42213976, + -0.4594, + 1.2996093, + 0.2845384, + -0.071948215, + -0.5455058, + -0.72335106, + -0.20604375, + -0.90673524, + -0.50468427, + -0.3518557, + 0.5413614, + 0.43315443, + -0.02303844, + 0.04827759, + 0.31603244, + -0.4553209, + 0.6144104, + 0.57707554, + 0.4910051, + 0.31598514, + 0.7190905, + 0.48233894, + 0.18999974, + 0.24193148, + 0.46849567, + -0.95606863, + 0.0021882951, + 0.9354973, + 0.42915505, + 0.22638497, + 0.09130642, + 0.31219122, + -0.3842324, + 0.046101563, + 0.45818305, + 0.04681496, + 0.5266481, + 0.35453343, + -0.5823564, + 0.6381164, + 0.42496845, + 0.59338266, + -0.43035588, + 0.13922337, + -0.29618904, + 0.17968069, + 0.104957044, + 0.29830676, + -0.27550116, + -0.5317129, + -0.47474512, + -0.12735772, + -0.7173798, + -0.12453854, + -0.037717506, + -0.013752282, + -0.54321134, + -0.011025088, + 0.3929911, + 0.21110871, + -0.29390416, + -0.4398478, + 0.10793352, + 0.6167283, + -0.26232195, + -0.3060531, + 1.5972784, + -0.26240337, + -0.7141756, + 0.223608, + 0.09221337, + 0.02683413, + -0.02056187, + -0.11638299, + 0.19315091, + 0.24724475, + 0.45774633, + 0.14341433, + -0.013861893, + 0.05551608, + 0.057693206, + -0.5671894, + -0.54670286, + 0.83107084, + 0.08118376, + -0.16982524, + 0.8060923, + -0.6531955, + 0.039523475, + 0.015200672, + 0.061988413, + 0.462259, + 0.15826909, + 0.8692533, + 0.014861889, + 0.5202361, + 0.21449433, + -0.76457024, + -0.063050814, + 0.01368928, + 0.71908975, + -0.057268508, + -0.7538402, + 0.36335906, + -0.55076426, + 0.36258003, + 0.9177642, + 1.0365118, + 0.47537407, + -0.5436593, + 0.464648, + 0.24605666, + -0.35141495, + -0.6668988, + -0.48540115, + 0.5560462, + -0.2636688, + 1.2665286, + -0.16587979, + -0.18019848, + 0.72870064, + -0.20420933, + 0.10623547, + 0.4718796, + -0.22966373, + 0.036914222, + 0.27656698, + 0.6051079, + -0.13796762, + -0.40972286, + 0.15141766, + -0.21325147, + -0.34234613, + -0.03215593, + -0.06801142, + -0.71103543, + -0.3336062, + -0.31844917, + 0.29350325, + 0.17994773, + 0.19918722, + -0.08757416, + -1.1048868, + 0.06875654, + -0.15387791, + -0.6662227, + -0.119967304, + -0.011460264, + -0.67614293, + -0.11738942, + -0.13365498, + 0.21331123, + -0.5455954, + 0.24807379, + 0.5295415, + -0.6367338, + 0.11844511, + 0.34747794, + -0.45634124, + 0.50054, + 1.9607627, + -0.26921248, + 0.35316572, + -0.15520753, + -0.8610759, + -0.21704057, + -0.4925709, + 0.030543435, + -0.0066538826, + 0.21042804, + 0.14126527, + 0.43853846, + 0.017657787, + -0.22125511, + -0.22817688, + 0.74757516, + -0.14075258, + 0.25253615, + -0.3080665, + -0.34832978, + -0.18888298, + 0.6764284, + 0.07958293, + 0.51727355, + -0.316754, + 0.21469021, + 0.54468656, + -0.06519739, + 0.3221296, + -0.17863315, + -0.24398446, + 0.36740807, + 0.19029659, + 0.07282646, + 0.899712, + 0.68628436, + -0.21379758, + -0.168105, + 0.683464, + -0.8273096, + -0.44060808, + 0.27866498, + -0.39182326, + -0.13381137, + 0.2554869, + 0.2604409, + 0.30884996, + -0.5134714, + -0.49222755, + -0.56861246, + 0.5954987, + 0.3108279, + -0.077349365, + -0.00474371, + -0.4206098, + 0.09955997, + -0.3305462, + -0.19988501, + 0.22669268, + -0.7809948, + 0.074481964, + 1.4126787, + 0.6626847, + 0.46790278, + -0.14552452, + -0.56650484, + -0.7802672, + -0.321216, + -0.31190592, + -0.110118896, + -0.14284605, + -0.4730835, + 0.112689555, + 0.066239044, + 0.046106115, + -0.13430017, + 0.45663616, + -0.27786967, + 0.27261853, + -0.27804503, + 0.32094038, + 0.1212979, + -0.3597033, + -0.5845554, + 0.44472754, + 0.47940361, + -0.41501278, + -0.13482891, + 0.12698592, + -0.35921603, + -0.1212354, + 0.22246975, + -0.21689823, + 0.07700017, + -0.048332393, + 0.3557376, + 0.6186823, + -0.017052576, + 0.61832374, + -0.15226789, + 0.29612473, + -0.25401723, + -0.65612364, + 0.3121953, + 0.37310302, + -1.0489149, + -0.39185792, + 0.4027487, + 0.30265778, + -0.7402459, + -0.14883378, + 0.7063136, + 0.26176122, + 0.26845866, + 0.03540062, + -0.36525583, + 0.75120807, + -0.19560763, + -0.09375051, + -0.6529012, + 0.200156, + -0.100323685, + -0.21730806, + -0.497785, + -0.6464898, + -0.4650893, + 0.21448687, + -0.11703843, + -0.19384393, + 0.05442716, + -0.108523875, + 0.49543798, + -0.4824949, + -0.075105846, + 0.41261023, + -0.40865317, + -0.06971934, + -0.20280506, + 0.22877029, + -0.004813805, + -0.45413977, + -0.51308274, + 1.1073762, + 0.5002776, + -1.2531722, + 1.1472095, + 0.2049424, + -0.4867228, + 0.03140496, + -0.26210678, + 0.5580943, + 0.13030833, + -0.2970394, + 0.3795617, + -0.20627137, + 0.26019174, + 0.360795, + 0.21765223, + 0.12728491, + -0.1675964, + 0.98623395, + -0.24520332, + -0.22635351, + -0.042104065, + -0.29286367, + -0.5668005, + -0.26149136, + -1.0234575, + 0.23389298, + -0.24646108, + -0.19225991, + -0.20495003, + 0.3499122, + -0.050679103, + 0.23677619, + -0.9238653, + -0.3816512, + -1.3653157, + 0.15051529, + 0.043255422, + -0.79281074, + -0.23342094, + -0.2503411, + 0.32354343, + -0.3477475, + -0.6182941, + -0.19638057, + -0.14853376, + 0.3753325, + -0.040184617, + -0.2415773, + 0.64929175, + 0.5570046, + 0.4211078, + -0.89693666, + -0.10882637, + 0.4765065, + -0.5635859, + 0.04869545, + -0.39412913, + 0.18681027, + -0.22497606, + -0.112218134, + 1.1284455, + 0.37725377, + -0.7721224, + -0.09823869, + 0.26001224, + 0.23079857, + 0.39520764, + -0.23493029, + -0.099763446, + -0.56669074, + 0.16690072, + -0.4035781, + -0.15068443, + 0.21722904, + -1.0879602, + -0.27624446, + -0.023628391, + -0.30603942, + 0.36875868, + 0.0052760243, + 0.3186158, + -0.20285556, + -0.4246448, + -0.5065971, + -0.36871764, + 0.42008093, + -0.54002863, + 0.035855487, + -0.56036174, + 0.9715348, + -0.72711074, + -0.11933465, + 0.17599963, + -0.37107807, + 0.5310406, + 0.48053405, + -0.08195922, + -0.78175956, + -0.108498335, + 0.7756748, + 0.4468291, + 0.25742537, + 0.035793178, + 0.0035554757, + 0.7731381, + 0.10304962, + -0.23865217, + -0.337972, + -0.8189733, + 0.14016184, + 0.8605752, + 0.1363914, + 0.16039087, + -0.41394863, + -0.057093583, + -0.06232515, + 0.7868592, + 0.20244685, + -0.85527074, + -0.2606771, + 0.48995373, + 0.55873114, + -0.053843014, + -0.019733727, + -0.13253608, + 0.16025694, + -0.12921074, + 0.022719339, + -0.12619156, + 0.44088683, + -0.5671519, + -0.65806293, + -0.34070575, + 0.3698821, + -0.22962627, + -0.5194472, + -0.0284101, + 0.12610152, + -0.67653525, + 0.20872854, + -0.41981328, + 0.249547, + -0.1277569, + 0.24885663, + -0.32284462, + 0.16006531, + -0.24886334, + -0.23103642, + 0.45032248, + -0.79231477, + 0.2850191, + -0.14548573, + -0.6566731, + -0.24496591, + -0.13551025, + -0.38704324, + -0.41108757, + -0.0003241673, + -0.04101916, + -0.0011307895, + -0.11789107, + -0.7913196, + -0.08304617, + -0.70799804, + 0.19786467, + -0.9275097, + 0.5958527, + -0.80666864, + -0.13206866, + 0.5947203, + 0.32671863, + -0.3496442, + 0.5533649, + -0.42228603, + 0.46394956, + 0.18562002, + 0.29523668, + 0.50710195, + -0.22948986, + -0.3344014, + -0.111899376, + 0.3008162, + -0.24653645, + -0.5126609, + -0.08234543, + 0.17267883, + -0.12323693, + -0.5643302, + 0.35072038, + -0.16755128, + -0.5685056, + -0.9813149, + 0.2948984, + 0.33937857, + -0.19816555, + -0.306533, + -0.58143723, + -0.22303392, + -0.2509134, + 1.1124885, + -0.34379867, + 0.08716568, + 0.055686206, + -0.17339788, + -0.16729099, + -0.12716441, + 0.017370492, + 0.42775074, + -0.045530185, + 0.3254748, + -0.5094994, + 0.100215696, + 0.34401998, + 0.6213141, + 0.0108341575, + 0.70894206, + -0.1988382, + -0.01101217, + -0.113299936, + -0.6327567, + -0.2632358, + -0.10285909, + -0.06535933, + 0.681251, + 0.12828067, + 0.15590592, + 0.24346234, + 0.122101165, + 0.8090748, + 0.025901817, + -0.4887064, + -0.4159148, + 0.3001246, + 0.51187676, + -0.26578715, + 0.26167247, + -1.5781801, + 0.45581087, + -0.51067024, + 0.7073751, + -0.29669982, + -0.32992154, + -0.43740296, + -0.23325303, + -0.12463999, + -0.01037465, + 0.055422038, + 0.46942887, + 0.4644596, + -0.015622716, + 0.21669668, + 0.0573031, + -0.24976394, + -0.07605499, + 0.04587814, + 0.8279598, + 0.2975644, + 0.4455736, + -0.117177024, + -0.052683733, + 0.21125583, + 0.6036108, + -0.4378574, + 0.5107722, + 0.19120893, + 0.043761797, + 0.20458306, + -0.31662863, + 0.48874053, + -0.13602747, + -0.47485414, + 0.19994727, + -0.312807, + -0.44983178, + -0.45141423, + 0.44788036, + -0.3477727, + -0.1181467, + 0.19524536, + -0.019441947, + -0.095405936, + 0.10720865, + 0.6007551, + -0.2824139, + 0.18305546, + -0.69732183, + 0.40817776, + -0.07099596, + -0.022182705, + -0.122024536, + -0.024196964, + 0.47547343, + 0.09126125, + -0.1672443, + 0.12953918, + -0.5045597, + 0.46227032, + 0.59446704, + -1.551765, + 0.4131388, + -0.07268096, + 0.37230116, + 0.079812214, + -0.18075399, + -0.22539273, + -0.08400656, + 0.14249751, + 0.2572081, + 0.046214473, + -0.42892426, + 0.46022728, + -0.39611524, + 0.6970871, + -0.40454367, + 0.10736837, + 0.15173715, + 0.15598011, + -0.255634, + 0.0016957596, + 0.37074453, + 0.12440815, + 1.0132257, + -0.013694554, + -0.09050525, + -0.04648375, + -0.8504493, + 0.5081724, + 0.25721753, + -0.23344725, + 0.92064697, + -0.6537604, + 0.22294387, + -0.13713178, + 0.16590035, + -0.63912505, + 0.20920458, + -0.33213162, + 0.13087502, + 0.03194485, + 0.031574637, + -0.76765907, + -0.09173186, + -0.16789712, + -0.69131184, + -0.06913213, + 0.5756421, + -0.47524202, + 0.107453175, + 1.3646166, + 0.2096885, + 0.24497563, + 0.16178425, + 0.36681283, + -0.3121682, + -0.17732625, + 0.22922026, + 0.22630385, + 0.234889, + -0.19369096, + -0.19630367, + 0.25744185, + -0.18537268, + -0.6672444, + 0.47188827, + 0.45130843, + 0.03640152, + 0.31295303, + -0.7102008, + -0.1564802, + -0.15416583, + -0.39292356, + 0.52072287, + -0.00957511, + -0.47905475, + 0.26119015, + 0.19736001, + 0.22808824, + -0.39047927, + -0.455849, + 0.07960488, + 0.5003706, + 0.4089726, + 0.3464138, + -0.1989831, + 0.16873224, + 0.21303013, + -0.23393095, + 0.0734084, + 0.435848, + 0.113742806, + -0.41508466, + 0.016575836, + 0.5017845, + 0.51748013, + 0.15761884, + 0.021903943, + -0.5734821, + 0.12263529, + -0.4108019, + -0.32617596, + 0.38697782, + 0.77620715, + -0.6619588, + 0.00979235, + 0.36449206, + -0.74780244, + 0.15545239, + 0.07746806, + -0.59904474, + 0.28962734, + 0.17714363, + 0.5895293, + 0.3093986, + 0.08548464, + 0.68950427, + -0.13456768, + -0.42814308, + -0.465526, + -0.092843145, + 0.4028162, + -0.028710458, + 0.3738959, + 0.6982794, + -0.4850294, + 0.2857722, + -0.15335646, + -0.15160239, + -0.20414379, + 0.1414167, + 0.11310426, + 0.04523526, + 0.08995154, + -0.51725155, + -0.07837768, + -0.30278635, + -0.81921023, + 0.33299914, + 0.31480002, + 0.31408125, + 0.039849605, + 0.20794922, + 0.30409575, + 0.76190394, + -0.23421805, + -0.16115662, + 0.36700964, + -0.6088547, + -0.2560282, + -0.026402792, + -0.09622548, + 0.38715774, + -0.24864174, + -0.09255743, + -0.8971276, + 0.0250038, + -0.33841705, + -0.7341436, + -0.20492166, + -0.05222474, + -0.2908612, + -0.5069264, + 0.109158605, + -0.29438928, + -0.52790755, + 0.36002368, + 0.44034433, + -0.3418596, + 0.718213, + 0.61163914, + -0.2995443, + -0.24969979, + 0.51525414, + -0.13071056, + 0.3202031, + -0.38726315, + 0.24688151, + -0.43100375, + -0.5277069, + 0.29559344, + -0.51337284, + -0.17143762, + 0.038890734, + 0.40109956, + 0.17898476, + 0.041215964, + -0.45131287, + 0.3137059, + 0.21929216, + 0.29829434, + 0.14079571, + 0.17013955, + -0.63374656, + -0.23131835, + -0.08551267, + 0.020216592 + ], + "2025-05-19T19:21:52.576806", + "2025-05-19T19:21:52.576806", + 33.8139686584, + -34.307434082, + -109.8262557983, + "3", + "ID: 2278700
Cluster: 3
Chunk: .\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimme..." + ], + [ + 11696, + "(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.\n\n(b) Verwenden Sie das Script test_steepest_descent.py .\n\nF\u00fchren Sie f\u00fcr verschiedene Startwerte und f\u00fcr verschiedene Toleranzen die Optimierung mit dem Steepest-\nDescent-Algorithmus durch.\n\nNotieren Sie jeweils die Anzahl der Funktionsaufrufe, die ben\u00f6tigt werden.\n\n(c) In dem Skript test_steepest_descent.py wird die Schrittweite mit dem Faktor a = 2 erh\u00f6ht bzw.\n\n1\/a = \u00bd erniedrigt.\n\nExperimentieren Sie mit verschiedenen a, z.B. a= 1.5\noder a = 3.\n\nWas beobachten Sie?\n\n45Musterl\u00f6sungen\n46\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\nM a* S*\n4 [4.\n\n1.667 6.283 6. ]\n\n38.7003\n8 [4.714 1.714 5.386 5.429] 1.835116\n16 [4.8 1.667 5.864 5.2 ] 2.0037\n32 [4.742 1.645 5.878 5.097] 0.075264\n64 [4.714 1.651 5.884 5.143] 0.233\n47\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\nL\u00f6sung: x* = (-4.0825, 0).\n\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.", + 18240, + 2678476, + null, + "md", + null, + [ + -0.3678096, + 0.22411136, + 0.14555797, + -0.42699647, + -0.729299, + 0.24891435, + 0.4685517, + -0.28782007, + 0.0039182007, + 0.33779606, + -0.33120748, + 0.55808645, + 0.5444058, + 0.027608246, + 0.08851585, + 0.5265253, + 0.1125632, + -0.078657985, + -0.16471888, + -0.8651752, + 0.34232825, + 0.29238293, + 0.58000296, + 0.3738271, + -0.053281233, + 0.2833863, + 0.17771712, + 0.2546254, + 0.19173825, + 0.3640164, + -1.1249534, + -0.62808365, + -0.20911168, + -0.7429463, + -0.23612238, + 0.031128652, + 0.08355768, + 0.49920803, + -1.0714387, + 0.2685635, + -0.7407983, + 0.34027272, + 0.057589408, + -0.14611419, + -0.7766918, + 0.26893753, + -0.23267646, + -0.6933191, + -0.048484992, + -0.7750932, + -0.47608018, + -0.5479562, + 0.6980775, + -0.13372378, + 0.07242524, + -0.92573684, + -0.46304497, + -0.44765055, + -0.016542159, + -0.08197684, + -0.206312, + 0.016311366, + -0.925002, + -0.12568606, + 0.6677194, + 0.071036585, + 1.1142404, + 0.017384283, + 1.0018773, + 0.00133482, + -0.27840173, + 0.634758, + 0.5802839, + -0.7605524, + -0.20455557, + -0.04038713, + 0.24859002, + -0.008373266, + 0.325014, + 0.35012645, + 0.4150449, + 0.4536388, + -0.4758337, + -0.26766813, + 0.15295926, + -0.23286396, + 0.67715883, + 0.88060784, + 0.38762388, + -0.2840984, + 0.13272654, + 0.09397071, + 0.19123562, + -0.19487503, + -0.0045328597, + 0.588555, + 0.03219355, + -0.11476211, + 0.24841958, + 0.24925984, + 0.15711085, + 0.10532148, + 0.3912235, + -0.8853935, + 0.075310834, + -0.494076, + -0.55151516, + 0.09978305, + -0.16531575, + 0.6700412, + 0.5069528, + -0.40286332, + -0.16228649, + 0.05990828, + 0.57297665, + -0.37969565, + -0.6679734, + 0.08180514, + 0.21972953, + 0.5694242, + 0.38082644, + 0.22479609, + 0.0020216443, + 0.49434677, + 0.53689814, + 0.49539545, + 0.08606393, + 0.4565222, + 0.0072135013, + 0.12637742, + 0.101515055, + -0.029388305, + 0.8617165, + -0.65296954, + -0.005246274, + -0.18843746, + -0.3285613, + 0.062149987, + 0.24110913, + -0.2830578, + -0.17067373, + -0.3850755, + -0.47518814, + -0.6953597, + 0.76148766, + 0.172775, + 0.046362113, + 0.8002584, + -0.08829208, + -0.49679655, + 0.05950617, + -0.059442427, + 0.7228303, + 0.70137143, + 0.017351463, + 0.4381916, + 0.94820493, + 0.005438257, + -0.05484689, + 0.11405181, + 0.15489933, + 0.23444295, + -0.85799915, + 0.03261217, + -0.018469501, + 0.12495635, + -0.052886948, + 0.14157408, + 0.83121943, + -0.8663431, + 0.33892405, + 0.043594994, + 0.22028501, + -0.043169703, + 0.09806814, + 1.2112548, + -0.16024297, + -0.71801597, + -0.11406754, + -0.055837423, + 0.5019528, + 0.3446591, + -0.03072898, + 0.05742063, + -0.6704931, + -0.22773243, + 0.3419827, + 0.14368197, + -0.084652215, + 0.25224182, + -0.067714304, + 0.20457816, + 0.18921226, + -0.009927638, + -0.6465068, + 0.271971, + -0.14164138, + -0.011513546, + -0.028339138, + -0.118608944, + 0.57998353, + 0.20205209, + 0.3259616, + -0.25774056, + -0.7522779, + -0.20399459, + -0.13177615, + -0.62510663, + -0.21027783, + 0.90771055, + 0.7177583, + -0.25513408, + -0.050829537, + 0.26926628, + -0.11782524, + 0.26412454, + -0.05102687, + -1.5365572, + -0.45302978, + 0.16255228, + 0.063613735, + -0.28642243, + 0.34522817, + -0.07101329, + 0.18005542, + -0.23682334, + 0.32415867, + 0.66335356, + 0.34608054, + -0.10468494, + -0.6694654, + -0.68839955, + -0.84516686, + -0.36476266, + -0.44299683, + -0.5964317, + 0.78207594, + -0.008276297, + -0.5981867, + 0.001056999, + 0.54307526, + -0.11397444, + -0.37990654, + -0.032238036, + -0.1376842, + -0.35169297, + 0.04135808, + 0.6256416, + 0.30124485, + 0.22195148, + -0.22071159, + -0.8043813, + 0.006213922, + 0.47676125, + 0.1049833, + -0.5621684, + -0.019654013, + 0.4216263, + -0.5494164, + -0.1278236, + -0.6237479, + 0.1324845, + 0.15146062, + 0.84333676, + -0.20212379, + 0.38633245, + 0.19855791, + 0.71972877, + -0.27934828, + 0.39083228, + -0.12750864, + 0.10830249, + -0.097761914, + 0.3528639, + 0.29329097, + -0.044711247, + -0.53218585, + 0.22838737, + 0.21223006, + -0.59300625, + 0.40613398, + 0.32882994, + -0.18848594, + -0.019406153, + -0.2230433, + 0.45763916, + -0.14360718, + 0.25143954, + 0.38984266, + 0.36529982, + -0.022876233, + -0.35925207, + 1.7798438, + -0.5238199, + -0.1401142, + 0.28656393, + -0.26484823, + 0.0066848993, + -0.27643174, + -0.2255847, + 0.44005957, + 0.65535617, + 0.22686455, + -0.08135609, + 0.55944777, + 0.5990618, + -0.16939652, + 0.13322672, + -1.2064099, + 0.6458739, + -0.46091852, + 0.30762303, + 0.19701488, + -0.5234082, + -0.17879483, + 0.24063437, + -0.05667635, + 0.42292443, + 0.095150985, + 0.15176065, + 0.14183438, + 0.7366917, + -0.036064304, + -0.43951753, + -0.027670555, + -0.24423136, + 0.57796323, + -0.0843677, + -0.88704884, + 0.31413665, + -0.7154766, + -0.062333897, + 0.21903536, + 1.197645, + -0.19913635, + 0.22721112, + 0.021787114, + 0.31952465, + -0.15354723, + -0.31043345, + -0.13725622, + 0.2909922, + 0.25442785, + 0.80317587, + -0.7394225, + -1.6850538, + 0.42473316, + 0.11797817, + 0.26467574, + 0.29278797, + 0.15541041, + 0.12741724, + 0.22435205, + -0.24607763, + -0.28285766, + 0.042361274, + 0.6792438, + 0.32505167, + 0.17487241, + 0.008075317, + -0.28720716, + -0.749232, + 0.25035363, + -0.39171287, + 0.2996157, + -0.16307858, + -0.27318275, + 0.66949147, + -0.7812344, + -0.075632304, + 0.017204536, + -0.38158864, + 0.2547915, + 0.78250456, + -0.5015506, + -0.25575796, + -0.50574535, + 0.32863018, + -0.4108349, + 0.013615236, + 0.46996215, + -0.5061204, + 0.014836654, + 0.26761582, + -0.16426851, + -0.20927489, + 1.8972657, + -0.10329004, + 0.025539964, + -0.5328487, + -0.19693592, + -0.2534776, + -0.38866043, + 0.07821511, + -0.16033472, + 0.18149069, + 0.50723135, + 0.16295336, + 0.520203, + -0.43038478, + -0.60534745, + 0.94256914, + 0.5229606, + 0.1552945, + -0.25919378, + -0.3098713, + -0.4715836, + -0.038957037, + -0.19593148, + 0.3008289, + 0.32643744, + -0.39156467, + 0.28155902, + -0.15090708, + 0.32126793, + 0.17733066, + 0.06456867, + 0.42270237, + -0.08058933, + -0.3072827, + 0.6373602, + 0.44913927, + -0.24639694, + 0.30038142, + -0.07149364, + -0.60085887, + -0.62378126, + -0.28695795, + -0.53931737, + 0.6431534, + 0.39609426, + -0.31124586, + -0.18503991, + 0.17078067, + -0.056517117, + 0.17211753, + 0.490376, + -0.2904827, + -0.18036674, + -0.56599855, + 0.017835133, + -0.16302752, + 0.22354655, + -0.4542738, + -0.12575115, + -1.008352, + -0.74524355, + 0.52247524, + 0.2563143, + 0.12293034, + 0.45703185, + -0.6626438, + -0.16453561, + -0.19931717, + 0.14595613, + -0.558118, + -0.26759505, + 0.0133200735, + 0.5464997, + -0.36390835, + -0.37997672, + -0.018119376, + -0.03083529, + -0.052278962, + 0.15711764, + -0.57445437, + -0.18539193, + -0.5665644, + 0.20388064, + -0.6541168, + -0.05488745, + 0.1817056, + -0.26302105, + 0.21622056, + 0.2556601, + 0.14937562, + -0.16698268, + 0.27469927, + -0.018344037, + 0.1636677, + 0.1771978, + 0.18749279, + 0.24506679, + -0.020724583, + 0.387089, + -0.122473106, + 0.09502612, + 0.08568658, + -0.5504361, + -0.39816844, + 0.68548656, + -0.32589632, + -0.0000523869, + 0.25058815, + 0.019605666, + -0.6262946, + 0.01327803, + 0.9252068, + -0.14782907, + 0.21190892, + -0.23213175, + -0.16593814, + 0.7776412, + 0.12256965, + 0.23838785, + -0.27695498, + 0.14072421, + -0.030359862, + -0.7250395, + -0.6847402, + 0.38624734, + 0.09885856, + 0.1049504, + 0.060403064, + 0.058530256, + 0.27757126, + 0.4074472, + 0.5028242, + -0.082754016, + -0.48310372, + 0.74997807, + -0.3301796, + -0.33007717, + 0.048770674, + -0.33890763, + -0.18934955, + -0.95521396, + 0.1361145, + 0.58137345, + 0.099846475, + -0.6041564, + 0.69763815, + 0.42434946, + -0.33427474, + 0.25779277, + 0.35542187, + -0.1382637, + -0.05941148, + -0.45265365, + 0.35144317, + -0.120817095, + 0.15743218, + 0.20331883, + 0.43101302, + 0.1828405, + 0.23666853, + 0.30883318, + -0.53761417, + 0.4168326, + -0.12895681, + 0.22766188, + -0.5186339, + -0.5453603, + -0.025924623, + -0.050195895, + -0.4113433, + -0.03609858, + -0.13337484, + 0.61745983, + 0.1509074, + -0.0059698224, + -0.87857985, + -0.091046125, + -0.85704845, + 0.38996726, + -0.6431917, + -0.3987604, + -0.8561114, + -0.021331646, + 0.4711954, + 0.058657736, + 0.18241066, + -0.33460218, + -0.18920857, + 0.3397018, + -0.110542685, + 0.2364493, + 0.5099128, + 0.33081958, + -0.08386848, + -0.14380571, + 0.40300876, + 0.2140873, + -0.079304025, + 0.7985577, + 0.097657435, + -0.18573123, + -0.37204546, + -0.07421698, + 0.06174642, + -0.2656743, + -0.53119665, + -0.048232056, + 0.30859625, + 0.50514776, + -0.13954012, + -0.26818717, + -0.38186908, + 0.04494473, + 0.13835034, + 0.1392388, + -0.52914774, + -0.2675972, + -0.49875128, + 0.17894325, + -0.45456898, + -0.69335073, + 0.013143882, + 0.16203654, + -0.21245885, + -0.7384571, + -0.28584552, + -0.40154034, + -0.21884315, + 0.31837517, + -0.38561904, + 0.10416128, + 0.33629104, + 0.7526697, + -0.76154226, + -0.029801756, + 0.040266108, + -0.3494204, + 0.26959726, + 0.56320876, + 0.47413453, + -0.5480745, + -0.10173443, + 0.2577141, + 0.12563378, + 0.45304897, + -0.0912993, + 0.3593891, + 0.62984586, + 0.42197144, + -0.39671102, + -0.3653083, + -0.6250508, + -0.18750538, + 0.48388448, + 0.72210497, + -0.06339631, + 0.11915733, + 0.39731792, + -0.13439238, + 0.64486164, + 0.15640941, + -0.42779243, + 0.07529897, + -0.13458411, + -0.14257619, + 0.43520615, + -0.089396596, + 0.12242659, + 0.20597519, + 0.11077414, + -0.05322638, + -0.24123682, + 0.14429295, + -1.1269975, + -0.6447196, + -0.62171316, + -0.74587154, + -0.078663796, + -0.8068668, + 0.6312601, + 0.23346364, + -0.2315292, + 0.085468486, + -0.33742338, + 0.27517933, + -0.45282257, + 0.5109709, + -0.38896942, + -0.21412842, + -0.3277836, + 0.30805543, + 0.5632294, + -0.9011104, + 0.2929179, + -0.49601147, + -0.6634845, + -0.24998194, + -0.020223372, + -0.5652537, + -0.24199864, + 0.107856266, + -0.15383366, + 0.07276025, + 0.068011396, + -0.60238016, + 0.21041946, + -0.53303915, + 0.29317427, + -0.21062952, + 0.17264742, + -0.6902411, + -0.46888602, + -0.49203944, + -0.18091854, + 0.11043791, + -0.033546783, + -0.7472969, + 0.64831495, + 0.19438292, + -0.12479889, + 1.2053995, + -0.2398505, + -0.5619322, + 0.19864756, + 0.32866433, + -0.05044725, + -0.20331208, + 0.36033756, + -0.44160834, + -0.14117077, + -0.2657167, + 0.22720161, + 0.30553618, + 0.21602675, + -0.18553075, + -0.72797275, + 0.99831, + -0.52407175, + -0.28368708, + -0.7280956, + -0.49955183, + -0.14538544, + 0.83912176, + -0.21748044, + -0.15573782, + 0.31637508, + -0.19315998, + -0.30434766, + 0.6987978, + -0.49236572, + -0.22806403, + -0.10609462, + -0.14750549, + 0.4000309, + 0.068926804, + 0.13784294, + 0.97443324, + 0.1797495, + 0.93045455, + -0.63066024, + 0.17389761, + -0.64109266, + -0.8960763, + -0.2640756, + -0.06678825, + -0.46671522, + 0.117288135, + 0.052430786, + -0.43994716, + 0.57637405, + 0.061848316, + 0.18838549, + 0.18612076, + -0.18824492, + -0.66636515, + -0.20893571, + -0.032661512, + 0.13970952, + -0.10278429, + -1.0974387, + 0.1402528, + 0.13878371, + -0.01663781, + -0.3513542, + -0.8949996, + -0.1265051, + 0.077980034, + 0.2914079, + 0.40969166, + 0.43848038, + 0.23543294, + 0.35803187, + 0.109440446, + -0.13036822, + 0.020616889, + -0.28012753, + -0.5201759, + 0.4856791, + 0.3286425, + 0.8966125, + 0.41561913, + 0.29593897, + 0.065431364, + 0.14549349, + 0.3014239, + 0.0492393, + -0.15931383, + 0.18611535, + -0.0064576752, + 0.5715438, + -0.43011832, + 0.07571235, + -0.29692504, + -0.092221454, + -0.062030867, + -0.28157824, + -0.5390036, + -0.28977257, + -0.071041875, + 0.0981367, + -0.29184252, + -0.2833457, + -0.45618072, + 0.18131319, + -0.2195445, + 0.7059897, + -0.19731158, + 0.13822216, + -0.20093991, + -0.08949226, + -0.07212529, + -0.026297985, + -0.40909356, + 0.78550416, + 0.6887458, + -0.2558626, + -0.4117956, + 0.14508699, + -0.04633792, + 0.041966163, + 0.48704344, + -1.5957401, + 0.17719781, + 0.013439601, + 0.052511312, + 0.08372782, + -0.22648823, + 0.108467676, + 0.1287182, + 0.13955343, + 0.5419213, + -0.21950135, + -0.50641274, + 0.119458824, + -0.36182642, + 0.4997866, + -0.22867505, + 0.19944578, + 0.5861369, + -0.1838091, + -0.3568781, + 0.35657734, + -0.15078011, + -0.18696868, + 0.25164935, + -0.14934285, + 0.2919904, + 0.50555235, + -0.7503699, + -0.2555865, + -0.077376425, + -0.1081697, + 0.33818665, + -0.05112584, + -0.4611317, + 0.35204726, + 0.3755425, + -0.1496095, + 0.2775311, + -0.14453304, + 0.3293343, + -0.2257966, + 0.19469005, + -0.8857268, + -0.035280302, + 0.35240868, + 0.27970234, + -0.6004595, + 0.11718616, + -0.22629058, + 0.3121088, + 0.8206786, + 0.12516652, + 0.22023453, + 0.040208317, + 0.1381906, + -0.6531981, + -0.008616332, + -0.41257447, + -0.4897079, + 0.2663996, + 0.09819694, + 0.41223788, + 0.056502216, + -0.2924536, + 0.1404714, + 0.035569716, + 0.23123023, + -0.2601275, + 0.57726634, + -0.43612653, + 0.48369145, + 0.3326028, + -0.021763384, + 0.06573943, + -0.1703394, + 0.2746827, + -0.12419963, + 0.8612882, + -0.21641538, + -0.029472556, + -0.35721824, + 0.06159352, + 0.8180829, + 0.6987596, + 0.56595796, + 0.39515093, + 0.26997817, + 0.24380773, + 0.02880174, + 0.2784828, + 0.30242598, + 0.20002434, + 0.058678307, + 0.08191423, + 0.79062206, + 1.0817858, + -0.023412256, + -0.08826092, + -0.43861562, + 0.6168989, + -0.09572536, + -0.006578341, + 0.4336514, + 0.81465113, + -0.3953828, + -0.39177614, + 0.09178447, + -0.98929536, + 0.5380173, + 0.5389707, + -0.0856336, + -0.019611456, + 0.41620967, + 0.65044355, + -0.50357616, + -0.012526657, + 0.28029284, + -0.24956997, + 0.27333137, + 0.08202867, + -0.19779143, + 0.093467966, + -0.07715279, + -0.056605816, + 0.28485316, + -0.13857056, + 0.5141893, + 0.17058949, + -1.0139135, + -0.02707772, + 0.5643165, + 0.3561577, + -0.18859388, + -0.2069366, + -0.5709614, + -0.097347945, + -0.11189282, + -0.4537786, + 0.7373613, + -0.05198635, + 0.63270897, + 0.19181007, + -0.01122836, + 0.19118078, + 0.46701136, + -0.23291092, + -0.72001076, + 0.89419436, + 0.10528708, + -0.5974056, + -0.07599875, + 0.20955473, + -0.09517202, + -0.05110279, + -0.0868803, + -0.78747714, + 0.073184654, + -0.2837519, + -0.22408068, + -0.23230089, + -0.17649184, + 0.23802061, + -0.3305582, + 0.707357, + -0.1628861, + -0.10195011, + -0.25700322, + 0.44107562, + -0.25177133, + -0.008856084, + 0.078548595, + -0.12433519, + -0.033410963, + 0.55317503, + -0.3450623, + -0.16450153, + -0.604919, + -0.13753518, + -0.8947691, + 0.15898514, + -0.5088476, + -0.10967581, + 0.18166427, + 0.0048026275, + 0.17079625, + 0.055713877, + -0.5802569, + 0.0007911176, + 0.0005876906, + 0.5397376, + 0.74722725, + 0.076544255, + 0.64574504, + -0.6378973, + 0.24237481, + 0.0059208646, + -0.48244172 + ], + "2025-05-19T19:22:08.198794", + "2025-05-19T19:22:08.198794", + 88.2828369141, + 84.2685241699, + -8.4168233871, + "3", + "ID: 2678476
Cluster: 3
Chunk: (x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n..." + ], + [ + 11697, + "1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale Minima f*\n[-1.38925764 -7.41822149] 1.3132611100220473\n[-1.38922156 3.91063 ] -0.9233486372581649\n[ 3.76097004 -1.79076623] -0.06792301515654611\n[ 3.76098637 -7.41815126] 2.836459612005422\n[-1.38926088 -1.79077318] -1.5911215163755672\nDavon ist das beste gefundene lokale Minima x* = [-1.38926088 -1.79077318] mit f* = -1.5911215163755672.\n\n48\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus.\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\nz.B. Startwert [4.5, 1.5, 0, 5 ]\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\nF\u00fcr die meisten Startwerte wird ein S(a*) < 10-8 realisiert bei ca.\n\n200 \u2013 400 Funktionsaufrufen.\n\nz.B.\nStartwert a0 = [3.69327012 1.467473 5.76522026 7.31055702]\na* = [4.735 1.658 5.795 5.119]\nS* =1.046512101321329e-08\n49\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren:\n(a)\n2 L\u00f6sungen:\n(b)\n1 L\u00f6sung: x= 4, y = 3\n(c)\n2 L\u00f6sungen:\n50\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.", + 18240, + 14893838, + null, + "md", + null, + [ + -0.33590606, + 0.39171347, + 0.3104508, + 0.10361929, + 0.33812582, + -0.89266545, + 0.2203859, + -0.17072962, + -0.38311207, + -0.5193819, + 0.09789546, + -0.028577767, + 0.9631888, + 0.6976565, + -0.3237031, + 0.42894217, + 0.1764155, + -0.10790475, + 0.4390532, + -0.23210269, + -0.51189566, + -0.07870508, + 0.607155, + 0.45995823, + -0.4367702, + 0.9425873, + 1.2920674, + 0.06832604, + 0.59638125, + 0.15249175, + -0.34862453, + -0.43116865, + -0.29870477, + -0.91613734, + -0.29049373, + -0.21590632, + -0.2930542, + 0.08318232, + -0.7841413, + -0.0034153927, + -0.7901054, + 0.61368895, + 0.12631243, + -0.29215825, + 0.42247868, + 0.6040616, + 0.27886987, + -1.1978732, + -0.24416664, + -0.5514975, + -0.57926816, + 0.2823675, + -0.3678563, + -0.5564819, + 0.40785637, + -0.45472288, + 0.0045371205, + -0.06573897, + 0.37535653, + 0.17278565, + -0.21359436, + -0.058760505, + -0.40548798, + -0.15494823, + -0.093890235, + 1.0526954, + 0.3185325, + 0.39896768, + 0.6471508, + 0.4597134, + -0.35048267, + 0.48255396, + 0.25813952, + -0.63369256, + -0.27337754, + -0.65566283, + 0.11761906, + -0.17589083, + -0.71219826, + 0.25374198, + 1.1541762, + 0.09933092, + 0.20385751, + -0.04254237, + -0.08918535, + -0.19576031, + 0.22483358, + 0.19787396, + 0.2404321, + -0.025957186, + -0.13484997, + 0.2730415, + -0.25445414, + 0.5330599, + -0.13038482, + 0.3874487, + -0.19044293, + -0.45442307, + 0.033644937, + 0.19034126, + -0.39600706, + 0.56566447, + -0.040557433, + -0.39816558, + 0.7161951, + -0.49254674, + 0.3461333, + 0.3090515, + -0.030412596, + 0.3122994, + 1.2697484, + 0.14168175, + -0.506121, + 0.52389926, + -0.010837641, + -0.59154004, + -0.59069806, + 0.20370388, + -0.15543158, + -0.31257522, + 0.1373198, + 0.38584834, + 0.106609546, + 0.48740098, + 0.13197376, + 0.06348309, + 0.38694394, + 0.8575028, + 0.18182376, + -0.19873917, + 0.4809254, + 0.5258416, + 0.3454337, + -0.25806275, + -0.20029357, + 0.049125016, + 0.3267058, + -0.45414025, + 0.18577082, + 0.1253999, + -0.66255164, + -0.50448304, + 0.108013205, + -0.418762, + 0.11707035, + 0.430934, + -0.49352115, + 0.026971685, + -0.3338327, + -0.33189088, + 0.13218048, + 0.09135047, + 0.41215834, + 0.46828347, + -1.2082564, + 0.26250207, + 0.23854397, + -0.17270845, + -0.13818276, + 0.14253643, + -0.029390574, + 0.9599662, + -0.43084943, + -0.30634317, + 0.21331799, + -0.3367448, + -0.6650989, + -0.20255336, + 0.94073933, + 0.11488612, + 0.4146423, + 0.20672353, + -0.13492694, + -0.2981984, + 0.004238449, + 0.13317117, + -0.0022086054, + -0.48821533, + -0.46299618, + 0.08836837, + -0.64553845, + 0.14289191, + -0.30086392, + -0.21818095, + 0.68341047, + -0.16812748, + -0.6347703, + -0.9230271, + 0.3478902, + 0.24960732, + -0.082797274, + -0.6342272, + 0.34937197, + -0.34813645, + -0.4743026, + -0.8953546, + 0.03705832, + -0.29891372, + 0.16870488, + -0.87467283, + 0.19414356, + 0.32681888, + 0.01969719, + -0.16106765, + 0.38122737, + 0.5729912, + -0.0047119167, + 0.10969442, + -0.020082496, + 0.29137334, + 0.42753476, + -0.07445496, + 0.2812643, + -0.28043538, + 0.42744085, + 0.44589993, + -0.26181003, + -0.11892925, + -0.24413949, + -0.037126876, + -0.029772237, + -0.4771371, + -0.3977548, + -0.20309207, + 0.07259096, + 0.10353623, + -0.61271036, + 0.21354672, + 0.13361123, + -0.14710839, + -0.12430452, + -0.21641652, + 0.0302229, + 0.18061854, + -0.3656264, + 0.8904599, + -0.07881095, + 0.4031285, + 0.17166355, + -0.0003245045, + 0.438467, + 0.041176476, + 0.78215593, + -0.53638214, + -0.2890119, + -0.12616298, + 0.3057408, + -0.57111543, + 0.1867647, + 0.5912349, + 0.7299374, + -0.11984831, + -0.19094998, + -0.26745826, + 0.51435226, + 0.632776, + 0.008805522, + -0.117792904, + -0.2087625, + -0.46639967, + -0.23401046, + 0.2640221, + 0.20766312, + 0.12164791, + -0.036320172, + 0.69862443, + 0.5222853, + 0.18709303, + -0.03745487, + 0.17772159, + 0.029548254, + 0.5356911, + 0.080552235, + -0.18985695, + -0.060920145, + -0.2523269, + -0.27250946, + 0.36531153, + 0.20142776, + -0.47303534, + -0.2952063, + -0.0676074, + -0.23673502, + -0.10643925, + -0.15354998, + 0.83791184, + -0.41829363, + 0.6375804, + 0.05150442, + 0.23957346, + 0.1909364, + 0.092406854, + 0.48399854, + -0.06581344, + -0.16266608, + 0.8553877, + 0.6186779, + -0.0045558214, + -0.12259734, + -0.0848625, + 0.90119827, + 0.3415705, + -0.07403641, + 0.114152424, + 0.31353518, + 1.1222613, + -0.33305246, + -0.8539586, + -1.2975045, + 0.21095358, + 0.16947955, + -0.14505096, + 0.24260502, + -0.23602599, + -0.028868921, + 0.548035, + -0.6153294, + -0.5094917, + 0.5805458, + 0.46327084, + 0.09499539, + 0.7213191, + -0.4820568, + -0.98985875, + -0.18374127, + -0.3119077, + 0.53249574, + -0.4696379, + -0.6569456, + 0.34249347, + -0.20338145, + -0.082161896, + 0.24956033, + 0.9542712, + 0.79970706, + 0.29157048, + -0.19261406, + -0.0028426573, + -0.28651705, + -0.1366284, + -0.3551082, + -0.44949642, + -0.42842808, + 0.3660117, + -0.36459392, + -0.4907967, + -0.11498898, + -0.44861293, + 0.24950483, + -0.14016429, + -0.16340521, + -0.07640612, + -0.0063108653, + -0.1635489, + -0.23960221, + 0.5497074, + 0.17916581, + 0.094532125, + 0.029509056, + -0.29030287, + -0.812735, + -0.27146292, + 0.32525358, + -0.43934125, + -0.4085723, + -0.4335987, + -0.335433, + 0.097798556, + 0.25620508, + 0.14483842, + 0.06562293, + -0.8902208, + 0.31216612, + 0.091096535, + -0.25931254, + 0.8130123, + -0.23010269, + -0.08069119, + -0.08905424, + 0.41154766, + 0.28664237, + 0.019053068, + 0.53550744, + 0.5910045, + 0.30451956, + -0.06331325, + 2.0988564, + -0.28108147, + -0.5976995, + -0.34309804, + 0.06326796, + -0.33786988, + -0.010220356, + -0.5256783, + -0.10211191, + -0.63157016, + 0.4036534, + 0.4906702, + 0.33467448, + -0.33670768, + -0.121758714, + 0.6700231, + 0.35760862, + -0.16497983, + -0.20975728, + -0.11325974, + -0.13261975, + -0.2896855, + -0.37124407, + 0.0099544525, + 0.30961758, + 0.44689175, + -0.2339319, + 0.023848332, + -0.13977788, + 0.20729817, + 0.1875785, + 0.08764145, + -0.08021545, + 0.22202978, + 0.12298653, + 0.6594626, + 0.09592599, + -0.13178842, + -0.09410121, + 0.4552377, + -0.43803436, + 0.20822833, + -0.53761524, + -0.031916007, + 0.21882284, + 0.10170132, + -0.009566713, + 0.7311339, + -0.0684986, + 0.049934126, + 0.3000583, + -0.026554484, + -0.39686638, + -0.70861316, + -0.027880117, + 0.35499468, + -0.11207831, + -0.499765, + -0.48348868, + -0.34388494, + -0.48105007, + 0.60503066, + -0.39658645, + 0.3469543, + -0.47920948, + 0.45409623, + 0.14348108, + -0.14048831, + -0.13981132, + 0.33521798, + -0.38107952, + 0.4963853, + 0.21793434, + 0.20167802, + -0.021880299, + -0.0005648248, + 0.48072758, + -0.6254387, + 0.097713254, + -0.82566947, + -0.10073705, + 0.1852338, + 0.38262045, + 0.09806475, + -0.2532496, + 0.07733476, + 0.11392352, + 0.22440103, + 0.08947565, + -0.0533663, + 0.2434976, + -0.15852576, + -0.19006477, + 0.32597095, + 0.6828344, + -0.049222954, + 0.42188156, + 0.19306275, + 0.06499714, + -0.018552758, + 0.5563857, + 0.40176, + -0.43232685, + -0.26301527, + 0.24536012, + -0.20925102, + -0.4339945, + 0.49012265, + 0.60176855, + -0.04978729, + -0.4828191, + 0.6418216, + 0.6538972, + 0.15746002, + -0.14003786, + 0.11694231, + 0.13776672, + -0.0044563813, + -0.26711693, + -0.43342102, + 0.2247397, + -0.26810363, + -0.13863604, + -0.33313075, + 0.3965034, + 0.32268012, + 0.19370021, + -0.46696082, + -0.22803703, + 0.48051804, + 0.05247999, + 1.0965937, + 0.13089259, + 0.2214207, + 0.41531175, + 0.4098714, + -0.30968416, + 0.21849532, + -0.04561331, + -0.060643367, + 0.17127791, + -0.46931973, + 0.21867254, + 0.81192017, + -0.23123172, + 0.3150143, + 0.30197603, + -0.40323567, + 0.46398234, + -0.37004718, + -0.7672908, + 0.33356816, + 0.006004675, + 0.21875018, + -0.124409646, + 0.07365078, + 0.24705392, + 0.12747845, + -0.12633014, + 0.16563326, + 0.07847252, + -0.056840662, + -0.49085456, + -0.52627397, + -0.08522316, + -0.6001328, + -0.8961967, + 0.015215516, + -0.1612459, + 0.37144473, + 0.5723836, + -0.4492511, + 0.26481628, + 0.22826286, + -0.005494058, + -1.2470425, + 0.35437542, + -0.78730905, + 1.0606828, + -0.46004397, + -0.26997054, + -0.3245129, + -0.06822033, + 0.9209056, + 0.011362463, + -0.30425593, + -0.7517366, + 0.13880777, + 0.27413028, + -0.1933576, + 0.2856955, + 0.23537765, + 0.6796595, + -0.11252994, + -0.24845043, + 0.3977719, + -0.0007769503, + -0.19451416, + 0.67448795, + 0.18295689, + -0.17913908, + -0.37656146, + -0.13019025, + 0.025544984, + 0.33852187, + -0.020727117, + -0.2564197, + 0.23636548, + 0.0872423, + 0.5113266, + 0.05294607, + 0.18992794, + 0.045519724, + 0.20268407, + 0.4374593, + -0.15545417, + -0.47415355, + 0.84578127, + -0.3037172, + 0.18228385, + -0.76951, + 0.3769554, + 0.18413964, + -0.34036025, + -0.7329282, + 0.1499577, + -0.384867, + -0.277074, + -0.078333884, + 0.43173605, + 0.024292514, + -0.16447209, + 0.10052106, + -0.079747334, + 0.5683817, + 0.19753318, + 0.40993354, + -0.14491975, + 1.0662547, + 0.7620299, + -0.8503555, + 0.036169294, + 0.39674735, + -0.32896972, + 0.47479004, + 0.64093304, + -0.4212622, + 0.445233, + 0.06142871, + -0.0031448603, + -0.03849586, + 0.23456362, + 0.29214394, + -0.15261322, + 0.68684715, + -0.06772319, + -0.13080488, + -0.046719633, + -0.9372045, + 0.29992792, + 0.22437409, + 0.5691649, + 0.008122586, + 0.02630509, + -0.246279, + 0.07682158, + 0.040924773, + -0.8297949, + -0.5058807, + -0.017141134, + 0.054919317, + -0.07830569, + 0.17229193, + -0.35661116, + -0.17654051, + -0.6083153, + 0.27162513, + 0.11233452, + 0.370967, + -0.22726128, + -0.08474107, + -0.05056624, + 0.27057815, + 0.14319366, + 0.50220823, + 0.2941692, + 0.10012668, + -0.50113165, + 0.5606267, + -0.26413903, + -0.5565119, + -0.3262282, + -0.481016, + -0.5187347, + -0.08354116, + 0.23001601, + -0.36792675, + -0.30980104, + 0.07762201, + -0.22544423, + -0.08877986, + 0.0025421903, + -0.5411843, + -0.3103168, + -0.79468703, + 0.38452345, + 0.1135299, + 0.019838817, + 0.0659729, + 0.41883272, + -0.09735884, + -0.8815488, + -0.37238622, + -0.22409506, + -0.32672265, + 0.2328353, + -0.35833317, + 0.48806155, + -0.16146304, + -0.005971439, + 0.2583304, + -0.57497644, + -0.63827735, + 0.1314214, + 0.20837368, + -0.17517, + -0.19427724, + -0.06900087, + 0.092233494, + -0.47418278, + -0.3864608, + -0.28755224, + 0.32606325, + 0.042186104, + -0.50984144, + -0.47762856, + 0.68613154, + 0.28856537, + -0.6695468, + -0.34591237, + 0.41832972, + 0.013998017, + -0.40121156, + -0.16996554, + 0.19653541, + -1.2125323, + -0.27781367, + -0.43350682, + -0.1131915, + -0.5043674, + 0.14370209, + 0.12693411, + -0.15184724, + 0.39240173, + 0.3629789, + 0.7289698, + 0.25402313, + -0.5330629, + -0.7510887, + 0.11286207, + 0.35968614, + 0.14193441, + -0.37580726, + -0.0049812347, + 0.00419908, + -0.26867425, + 0.039306276, + -0.18077782, + -0.23572503, + 0.91016686, + 0.03585251, + 0.448039, + 0.23250401, + -0.059245557, + -0.42372322, + -0.23279202, + 0.23459269, + 0.03195946, + -0.12765855, + -0.6202953, + 0.24968916, + 0.55304074, + 0.33581388, + -0.2941309, + -0.30869645, + -0.6403418, + 0.031887807, + 0.029901545, + -0.026063934, + 0.69973433, + -0.43355486, + -0.2034586, + -0.85406464, + -0.12872577, + 0.20614317, + 0.19064388, + -0.14787778, + 0.22580391, + 0.22506404, + 0.24838386, + 1.081974, + 0.1729262, + -0.018203596, + -0.19330841, + 0.72590435, + -1.4968921, + 0.004720202, + -0.07888028, + -0.47248036, + 0.49262154, + -0.34478003, + 0.23523398, + -0.107730284, + -0.8425615, + 0.2613603, + -0.40432376, + -0.27694544, + -0.65224814, + 0.7424147, + -0.4026419, + -0.64835334, + 0.21238434, + -0.09683728, + -0.29091868, + -0.7402414, + 0.3598189, + -0.29986382, + 0.15446621, + -0.1919071, + 0.25922272, + 0.22927418, + -0.032613564, + -0.33442527, + -0.5190184, + 0.37727833, + 0.07692185, + -0.26261303, + -0.110283166, + -0.16719837, + -0.0015096199, + -0.076535225, + -0.3241052, + 0.26163572, + -0.10726448, + -0.06968711, + -0.13368641, + 0.19738178, + -0.11340683, + -0.45369267, + 0.020275012, + 0.60410017, + -0.9112382, + 0.16955017, + -0.17485043, + -0.1865263, + 0.19080782, + -1.5234046, + -0.10345366, + -0.052331753, + 0.23880506, + 0.53663546, + -0.24265045, + -0.26531696, + 0.11780984, + -0.30664426, + 0.41968122, + -0.072069414, + 0.28039533, + -0.7664505, + 0.025151275, + 0.25613505, + 0.24604593, + 0.16977641, + 0.47325727, + 0.3389876, + 0.37681887, + 0.38041916, + -0.32667252, + 0.8149042, + -0.25926495, + 0.06907653, + -0.34268373, + -0.11257311, + -0.46087345, + -0.15273844, + 0.4997358, + -0.4539106, + 0.27756402, + 0.49088773, + -0.6158563, + 0.59985936, + -0.060182884, + 0.202691, + -0.07031589, + 0.21616141, + 0.5854108, + -0.5146055, + -0.009330824, + 0.31469998, + 0.5504163, + -0.076560006, + 0.02636834, + -0.47711086, + -0.16173875, + -0.120844685, + 0.006263092, + 0.5575075, + -0.2166308, + 0.35936823, + -0.21399754, + 0.22859916, + -0.41885504, + 0.34277546, + -0.123748906, + 0.20251282, + 0.2581409, + 0.020416893, + -0.6653402, + 0.05591305, + -0.44808155, + -0.096292466, + 0.8243559, + -0.1253737, + -0.07283937, + 0.19161347, + -0.13836502, + -0.3491693, + -0.029038519, + -0.12815437, + 0.31894088, + 0.31654105, + 0.43801534, + 0.26650214, + 0.48057893, + -0.28846806, + 0.53230786, + 0.16099234, + -0.051647183, + -0.29198918, + 0.1318759, + -0.10782446, + -0.28303936, + 1.1760926, + 0.25910196, + -0.13603283, + 0.06371283, + 0.41240427, + 0.21658808, + -0.5014255, + -0.6016535, + 0.07360568, + -0.21727075, + 0.27255863, + 0.1077101, + -0.2996914, + 0.12098016, + -0.14527807, + 0.898971, + 0.09592983, + 0.08159387, + 0.40850806, + -0.10489434, + -0.13433808, + -0.35191378, + 0.74057966, + 0.37995386, + 0.025303882, + 0.16753542, + -0.53967506, + -0.2648382, + -0.433977, + 0.42190063, + 0.3583233, + -0.14538418, + -0.012023427, + -0.18422373, + 0.13012066, + -0.63594425, + 0.30961394, + 0.093961, + -0.2407747, + -0.2667321, + -0.4671023, + -0.3149746, + 0.022633713, + 0.46642184, + 0.2163873, + 0.4074552, + 0.33905888, + -0.6657157, + -0.68455285, + -0.80516523, + -0.11686253, + 0.28140026, + -0.10913436, + -0.12661463, + -0.6720218, + -0.7079563, + -0.12829784, + -0.11200719, + 0.24317831, + -0.16509874, + -0.56251854, + 0.4119153, + -0.26087627, + -0.295765, + 0.43291384, + -0.098367766, + 0.52235484, + 0.5432571, + 0.5161535, + 0.28989768, + -0.50106823, + -0.09825129, + 0.34641367, + 0.14701648, + -0.6121292, + 0.08132542, + -0.36293986, + -0.2979607, + -0.038438633, + 0.05261112, + -0.23835163, + 0.2882274, + 0.33453023, + 0.39790174, + -0.5788158, + 0.2863186, + 0.13673428, + 0.44206855, + 0.59880894, + -0.018302038, + -0.05376276, + -0.35173792, + -0.61260134, + 0.2578006, + -0.41292694, + -0.75261146 + ], + "2025-05-19T19:22:29.785999", + "2025-05-19T19:22:29.785999", + -10.2018480301, + 81.8802947998, + 117.4437103271, + "5", + "ID: 14893838
Cluster: 5
Chunk: 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale..." + ], + [ + 11698, + "Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukturen einfach und doppelt verkettete Listen (evtl.\n\nFIFO u LIFO) M. B\u00fcnner B3.02\n8 21.02.2025 13:30-15:00 Fr (evtl.\n\nFIFO u LIFO) Bin\u00e4re B\u00e4ume und Graphen M. B\u00fcnner B3.02\n9 27.02.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n9 28.02.2025 13:30-15:00 Fr 1.\n\nHeaps und Heapsort 1.1 Heaps M. B\u00fcnner B3.02\n10 06.03.2025 13:30-15:00 Do 1.1 \u00fcben und 1.2 Heapsort M. B\u00fcnner B3.02\n10 07.03.2025 13:30-15:00 Fr 1.2 Heapsort mit Python M. B\u00fcnner B3.02\n11 13.03.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n11 14.03.2025 13:30-15:00 Fr 3.\n\nNicht-konvexe Optimierung in einer Dimension Parameterscan, Bisektionen M. B\u00fcnner B3.02\n12 20.03.2025 13:30-15:00 Do Modifizierter Newton M. B\u00fcnner B3.02\n12 21.03.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n13 27.03.2025 13:30-15:00 Do Schrittweitensteuerung M. B\u00fcnner B3.02\n13 28.03.2025 13:30-15:00 Fr Straffunktionen M. B\u00fcnner B3.02\n14 03.04.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n4.\n\nReelwertige Optimierung in N Dimensionen 4.0 Definitionen M. B\u00fcnner B3.02\n14 04.04.2025 13:30-15:00 Fr 4.1 Parameter-Scan\n17 24.04.2025 13:30-15:00 Do 4.2 Downhill-Simplex-Algorithmus M. B\u00fcnner B3.02\n17 25.04.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n18 01.05.2025 13:30-15:00 Do 4.2 Dowhill-Simplex L\u00f6sung von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.", + 18240, + 13862191, + null, + "md", + null, + [ + -0.6860801, + -0.3485546, + 0.46395817, + -0.20441821, + -0.17239648, + 0.5258232, + -0.17315537, + -0.06618009, + -0.091196164, + -0.3730068, + -0.043280527, + 0.5113549, + 0.4027665, + -0.36744648, + -0.4478888, + 0.60762215, + -0.22295806, + 0.7349587, + 0.086457334, + -0.27553374, + -0.6360301, + -0.048350893, + -0.12348564, + 0.6529018, + -0.26412815, + 0.40382835, + -0.15250124, + 0.33308154, + 0.7291152, + 0.3976206, + 0.37770534, + 0.26793548, + -0.23241341, + -0.40180683, + -0.13164178, + 0.75910014, + 0.57518876, + -0.18396497, + -0.70033646, + 0.30310062, + -0.94096315, + -0.015046481, + -0.47506946, + -0.044394616, + 0.5435846, + 0.1603361, + -0.967958, + -0.10958026, + 0.3257379, + -0.078564085, + 0.16164842, + 0.11590589, + -0.8159819, + 0.26658115, + 0.3214972, + -0.48644543, + 0.114687875, + -0.7085749, + 0.098047815, + -0.980673, + -0.032232814, + -0.05258547, + 0.022156134, + -0.106025405, + 0.42912948, + 0.03945327, + 0.08103447, + -0.24689955, + 0.5330127, + 0.45275176, + -0.4095543, + 0.14782739, + 0.19674322, + -0.6879161, + -0.30199474, + -0.23333098, + -0.32973096, + -0.4196811, + -0.093533605, + 0.31919545, + 0.8372393, + 0.027855966, + -0.311835, + 0.3718544, + -1.0823565, + 0.09732392, + 0.060192727, + -0.21456935, + 0.22497958, + -0.30766487, + 0.19325899, + 0.17108542, + -0.23097503, + 0.63292223, + 0.010815224, + 0.106230825, + 0.28183043, + 0.6241955, + 0.08298084, + -0.34695968, + 0.2996233, + 0.16239077, + -0.70189357, + 0.5480686, + -0.13229646, + 0.0007576123, + 0.8606017, + 0.170947, + -0.5987367, + -0.10136402, + 0.60594875, + 0.5036453, + 0.4994106, + 0.19977245, + -0.47415957, + -0.37461323, + -0.6320662, + -0.028156422, + -0.024673622, + 0.22961576, + 0.07641259, + -0.2545646, + 0.3052471, + -0.28090623, + -0.16017857, + 0.042913407, + 0.8044146, + 0.7114475, + -0.0642388, + 0.99027973, + -0.07886279, + 0.06447899, + -0.32335612, + 0.0001365487, + -0.28215742, + -0.13375168, + -0.39451405, + -0.16909838, + -0.11682804, + 0.120517135, + 0.07318341, + -0.17162478, + -0.46246165, + -0.35330614, + 0.10484846, + 0.24791951, + -0.12731892, + -0.50783664, + 0.3618289, + -1.0982708, + 0.09533071, + -0.1883993, + 0.72585833, + 0.53216237, + -1.0699661, + -0.6406414, + -0.4135726, + 0.7534077, + -0.0187695, + -0.34824085, + -0.18823946, + -0.41106436, + 0.09401887, + 0.18871403, + -0.2814437, + -0.10960567, + -0.8113512, + -0.46214312, + 0.25103912, + 0.0013840524, + 0.3335204, + 0.5888298, + -0.2050673, + 0.13162608, + -0.16718927, + 0.61101454, + -0.31022134, + 0.48997703, + 0.006404396, + -0.499426, + 0.048823413, + 0.39079463, + -0.20261157, + 0.37737855, + 0.2919023, + -0.17956193, + -0.7258667, + -0.257869, + -0.14300701, + 0.20836586, + -0.4788742, + -0.20069444, + -0.0043600798, + -0.92583555, + 0.24084401, + -0.25526688, + 0.12948486, + 0.664255, + -0.28819323, + -0.06161815, + 0.031459633, + 0.38797498, + 0.52117515, + 0.04604868, + -0.06253423, + -0.43427673, + -1.1362423, + 0.62175083, + -0.22730468, + 0.27340862, + -0.27601793, + -0.35191455, + -0.51655614, + 0.2329652, + 0.1403372, + 0.006029185, + 0.39278388, + 0.1798011, + 0.39050344, + 0.07474396, + 0.09279763, + 0.2761983, + -0.27216065, + -0.3841997, + 0.019106079, + 0.3840283, + 0.13505271, + 0.34418413, + -0.19022708, + 0.08186449, + 0.21895693, + -0.24413255, + 0.32325014, + -0.26621217, + 0.19116148, + -0.29064533, + -0.023943014, + 0.01408577, + 0.4359628, + 0.3230834, + -0.16144198, + 0.02921491, + 0.5623311, + -0.22518592, + -0.48292437, + -0.41794583, + 0.41864115, + -0.13766113, + 0.5236155, + 0.55685955, + 0.37707752, + -0.37464654, + 0.08642087, + -0.2447605, + -0.3685829, + -0.030297473, + 0.563435, + -0.14187954, + -0.842044, + 0.15359634, + -0.36064434, + 0.2973316, + 0.03557551, + 0.19956698, + -0.23925109, + -0.17533791, + 0.2213535, + -0.40917885, + -0.26059127, + -0.068692796, + 0.10054211, + 0.030156832, + 0.0013911054, + 0.36337513, + -0.24408403, + 0.23329794, + 0.1942243, + -0.32621187, + -0.26874563, + -0.124667406, + 0.11869365, + -0.24760775, + 0.1753402, + -0.7036072, + -0.49275708, + 0.003779618, + 0.34992558, + 0.24649972, + 0.17034328, + 0.105575, + -0.16810402, + -0.5526359, + 0.78009427, + 0.22755045, + 0.57721543, + -0.037881676, + -0.043095045, + -0.04691398, + 0.26173007, + -0.6536579, + 0.19095558, + 0.56185293, + 0.3144775, + 0.033251487, + 0.3466827, + 0.27645966, + -0.10950956, + -0.15846083, + -0.13779193, + -0.058052097, + -0.056354437, + 0.2384865, + 0.7874806, + -0.24707839, + -0.0948301, + -0.0103689125, + 0.11410369, + -0.562285, + 0.43039906, + 0.017447397, + 0.31779972, + 0.73132986, + -0.35151857, + -0.16058862, + -0.4051296, + 0.009876985, + -0.2042031, + 0.012267202, + -0.353221, + -0.30619404, + 0.048097763, + -0.3485511, + 0.35861322, + 0.31316483, + -0.26327837, + -0.41485885, + -0.34626505, + 0.99694973, + -0.056456424, + -0.3024091, + 0.7581393, + -0.5269681, + 0.18442762, + -0.61693645, + -0.30976468, + 0.1569087, + 0.54342616, + -0.21989511, + 0.17409766, + 0.53342974, + -0.083186276, + 0.13011861, + -0.59493315, + -0.415506, + 0.0015234202, + 0.4974453, + -0.061597507, + -0.6457294, + -0.4822651, + 0.22157495, + 0.11033867, + -0.23296547, + -0.1290575, + -0.026239492, + -0.063676514, + -0.057714008, + -0.07190033, + -0.008416915, + -0.38685182, + -0.10297019, + 0.0004220549, + -0.356672, + -0.29946795, + -0.34350997, + 0.11906559, + -0.7911113, + -0.41706347, + -0.26543042, + -0.07129728, + 0.13572657, + 0.430287, + 0.09431683, + 0.33169484, + 0.29210016, + -0.02444471, + 0.15620321, + 2.029257, + -0.21317169, + 0.7233217, + -0.25526613, + 0.5971234, + -0.09578345, + 0.11863645, + 0.27826366, + -0.6018005, + -0.3623148, + -0.110946335, + -0.34779453, + -0.14536633, + -0.25476557, + 0.30440843, + 0.08087215, + 0.043604422, + -0.3100603, + -0.13520136, + -0.06687803, + -0.026638012, + 0.077062584, + -0.2284721, + -0.9444294, + 0.024161618, + 0.369872, + 0.20965564, + -0.17028984, + 0.07078336, + 0.01368865, + -0.3090827, + 0.017295305, + -0.09061946, + 0.08116731, + -0.15135634, + 0.36598223, + 0.035531096, + 0.2985763, + -0.090075664, + -0.5875514, + -0.1595432, + -0.6139428, + 0.320748, + -0.15143462, + -0.032016832, + 0.09553331, + -0.27477115, + 0.019357543, + -0.15979686, + -0.5698217, + 0.13376307, + -0.08427775, + -0.32124844, + -0.2647876, + 0.6624501, + -0.19917205, + 0.02146909, + -0.6466082, + -0.073993176, + -0.9885278, + -0.4193592, + 0.2468539, + 0.024406554, + 0.5287464, + 0.07563445, + -0.16637278, + -0.11358879, + -0.20569226, + 0.011063298, + 0.10000098, + -0.31387419, + 0.5456193, + 0.34747505, + 0.26594344, + 0.16782577, + -0.4839821, + -0.63927335, + -0.19178826, + 0.27510977, + -0.067705184, + 0.49221545, + -0.59542143, + 0.20466644, + -0.44972497, + -0.07890808, + -0.42398483, + -0.043234043, + 0.21367003, + -0.2132347, + -0.056402788, + 0.15442462, + -0.36094022, + 0.048838355, + -0.08287494, + -0.24208526, + -0.38290033, + 0.23209488, + 0.15425287, + 0.20316578, + -0.27841163, + 0.43552342, + -0.18721311, + 0.17789155, + -0.31993422, + -0.35306036, + 0.25398663, + 0.01213206, + 0.31121194, + 0.33026677, + -0.4265131, + -0.5230213, + 0.0055217, + 0.8855003, + 0.4653291, + -0.44568247, + 0.08404093, + -0.18140033, + -0.2040696, + -0.19184278, + -0.49080408, + 0.10910199, + -0.52560747, + -0.19274965, + -0.31321326, + 0.21505879, + 0.46277383, + -0.10848859, + 0.2476551, + 0.1635314, + 0.28406337, + -0.44451958, + 0.06298702, + -0.3804049, + -0.40523404, + 0.67032033, + 0.09428958, + -0.17903516, + 0.34972286, + 0.43184057, + -0.13443932, + -0.07969784, + 0.057638515, + -0.18940887, + 0.6095914, + 0.06707671, + 0.43615067, + -0.11964873, + -0.34688914, + 0.18390676, + 0.21178079, + -0.2127536, + 0.47575635, + -0.12537812, + 0.13106315, + 0.04816245, + 0.18369582, + 0.56648314, + 0.02633335, + -0.30112267, + -0.21021608, + 0.62334394, + -0.56254214, + 0.50711113, + 0.026362956, + 0.37148467, + -0.30734268, + 0.13791992, + 0.18387683, + -0.3029835, + -0.18743064, + 0.2512297, + -0.05024031, + -0.12411865, + 0.1298092, + -0.12842037, + 0.0015813485, + 0.42588708, + -0.13815619, + 0.11098805, + 0.39076093, + -0.20858353, + 0.12424139, + 0.06438958, + 0.16825227, + -0.08843251, + -0.40865195, + -0.5351391, + 0.14558966, + 0.59570223, + 0.14352679, + 0.5572146, + 0.078978226, + 0.24309309, + -0.06900851, + -0.4133992, + 0.76439196, + -0.638155, + -0.39495802, + 0.12977988, + -0.54981637, + -0.1782025, + -0.008346694, + 0.009326126, + -0.048258714, + 0.5410699, + 0.29433548, + -0.21673045, + -0.093735486, + -0.022244994, + 0.39394453, + 0.054438837, + -0.22593369, + 0.36207658, + -0.06334727, + 0.21071163, + 0.047024548, + 0.3905145, + 0.8402073, + -0.19227402, + 0.12917095, + 0.38638166, + 0.13610038, + -0.037453897, + 0.7156793, + 0.030355264, + 0.04843393, + 0.009829104, + -0.44319516, + 0.13311364, + 0.2541525, + -0.046379313, + -0.2808207, + -0.34123662, + 0.21512434, + 0.6074028, + 0.34798157, + -0.10129495, + 0.44183388, + 0.34999934, + 0.42964444, + 0.32243028, + -0.16277914, + 0.22861466, + -0.12166809, + 0.5333321, + 0.48339283, + -0.25110775, + 0.4819685, + 0.37097082, + -0.32969442, + -0.024265073, + 0.78415334, + 0.25793454, + 0.16162944, + -0.087269865, + -0.33500057, + -0.3261803, + 0.5518687, + -0.90507007, + -0.013383376, + -0.001977086, + 0.0024818778, + -0.065115415, + 0.09790979, + 0.18072376, + -0.0738818, + -0.11028995, + -0.600401, + 0.04543043, + 0.25311455, + -0.0031429231, + -0.20072408, + 0.27386862, + -0.21350135, + 0.08375318, + -0.12114306, + 0.43434772, + 0.17924203, + 0.31343308, + 0.35821825, + 0.35753828, + -0.3355286, + 0.18939859, + 0.109726354, + -0.14672968, + 0.00075607, + 0.3742777, + -0.3500672, + 0.1728265, + -0.066718504, + 0.103530705, + -0.11454057, + 0.23822464, + -0.19348122, + 0.16772825, + -0.33940458, + 0.445262, + -0.55615187, + 0.02941596, + 0.031251326, + 0.054873712, + -0.3686113, + -0.09899491, + -0.52229613, + -0.74973345, + 0.12660062, + -0.0734586, + -0.13181083, + -0.20107585, + 0.0026498586, + 0.10669604, + -0.24962789, + -0.18521641, + 0.33509785, + -0.31328562, + 0.10531768, + -0.06530452, + -0.4216859, + -0.14304638, + 0.25585204, + 0.20474237, + -0.019952867, + -0.24179775, + 0.04544133, + -0.43620762, + 0.22009724, + -1.0078866, + 0.31539172, + -0.055549443, + -0.15128395, + -0.46001205, + -0.26822767, + -0.15610215, + -0.28285488, + -0.3897249, + 0.6116927, + 0.5115852, + -0.16646034, + -0.51120347, + 0.050354287, + -0.13055253, + -0.14442888, + -0.24128015, + 0.17524274, + 0.37185687, + -0.09662709, + 0.2211615, + 0.23827557, + 0.046966955, + -0.9924135, + 0.21720257, + 0.22302425, + -0.09668941, + 0.10737849, + -0.16213062, + 0.31022477, + -0.54522794, + -0.31969857, + -0.38858533, + 0.060322884, + -0.22654155, + -0.49537724, + -0.15491302, + 0.2663998, + 0.28780505, + 0.54319113, + 0.5756062, + -0.28980452, + 0.04658731, + 0.3487832, + 0.66586655, + 0.33021766, + 0.09306145, + -0.2509511, + -0.2661513, + 0.54346806, + -0.41898304, + -0.38904563, + 0.18791656, + -0.3061723, + 0.43146136, + 0.3519523, + 0.0027168468, + -0.3259218, + -0.6692024, + 0.1373967, + -0.09519786, + -0.25879303, + 0.23446402, + 0.3898967, + -0.67651945, + -0.03949001, + -0.41109696, + 0.35135323, + 0.3674627, + 0.075010106, + -0.09426131, + -0.19750182, + 0.5369876, + 0.06403425, + 0.41882786, + 0.0014929995, + 0.36894122, + 0.049361043, + 0.16047618, + -0.9077335, + 0.038370397, + 0.09435318, + 0.19818088, + 0.17694972, + -0.21300194, + 0.47215307, + -0.062955394, + 0.35617256, + 0.29666927, + 0.40636548, + 0.17498729, + -0.26456627, + -0.08921361, + 0.13839418, + 0.11258583, + -0.00842293, + 0.13503903, + -0.34412557, + 0.25042546, + 0.0037803426, + -0.010467604, + 0.27210462, + -0.1902479, + 0.012865007, + -0.39220074, + 0.20186968, + -0.2074265, + 0.005490862, + -0.07258669, + -0.094529174, + -0.08461975, + 0.6929088, + 0.30651134, + -0.4974994, + 0.16395596, + 0.2634684, + -0.14254937, + 0.12844166, + 0.015992165, + 0.09394011, + 0.36797953, + -0.11074004, + -0.5706007, + 0.43132216, + 0.7577603, + -0.8736129, + -0.6394519, + 0.2828955, + 0.22421268, + 0.17153203, + -0.49276826, + -0.45501667, + -0.3103023, + -0.0037775058, + 0.24779111, + -0.12055814, + -0.035536226, + 0.10743559, + 0.3593567, + -0.14149944, + 0.5957868, + 0.21506207, + -0.182036, + 0.117405266, + 0.060599074, + 0.32793534, + -0.36560515, + -0.0757536, + -0.51676726, + 0.034155004, + 0.051083386, + -0.4733615, + 0.384401, + -0.10030475, + 0.15185434, + 0.21056244, + -0.4168073, + 0.073315755, + 0.190744, + 0.19549467, + 0.16467535, + 0.42962003, + 0.15194604, + -0.15202369, + -0.33229786, + 0.2745797, + -0.13968235, + -0.19117047, + 0.34084815, + 0.33222732, + -0.29961404, + -0.0719326, + 0.36251134, + 0.40206087, + 0.11657206, + -0.030572949, + 0.061129257, + 0.006069269, + 0.34036732, + -0.9214041, + 0.25454548, + -0.12457685, + 0.5961018, + -0.05635869, + -0.11486925, + -0.3395826, + 0.18727002, + -0.2598338, + 0.41451204, + 0.6440658, + -0.007869851, + -0.4668829, + 0.052549448, + 0.35841185, + -0.8165342, + 0.0001411512, + 0.25710332, + -0.027150609, + -0.35925454, + 0.4726051, + 0.07903178, + 0.35724092, + 0.2781954, + 0.45340464, + 0.5560549, + 0.27448368, + -0.32043767, + -0.18250427, + -0.4511716, + -0.12836972, + 0.09164104, + -0.38447925, + -0.090387724, + -0.072897464, + -0.25012484, + 0.27516618, + -0.31986013, + 0.08820717, + 0.12876004, + 0.18937884, + 0.15644345, + -0.15652326, + -0.39527446, + 0.33317572, + 0.87882274, + 0.2248554, + -0.09328258, + -0.041499548, + -0.010910217, + -0.27961558, + 0.037944, + 0.64704084, + 0.357086, + 0.25669414, + 0.6530471, + -0.24570858, + -0.1655674, + -0.14236602, + 0.15361072, + -0.20235595, + -0.50188607, + 0.35677695, + -0.17273377, + -0.06722525, + 0.101337954, + 0.6369814, + 0.072987966, + -0.39359337, + 0.2998125, + -0.14313696, + 0.46378788, + -0.1206851, + -0.23236516, + 0.11158031, + -0.10499212, + -0.40886712, + -0.17864627, + -0.04458949, + 0.27058226, + 0.5329728, + 0.24569568, + 0.6278155, + -0.074599095, + -0.601643, + -0.07527384, + -0.34544134, + 0.0375455, + 0.058798328, + 0.35477605, + -0.07688232, + 0.30710664, + -0.075573556, + 0.24964158, + 0.36102477, + -0.055690672, + -0.16954239, + -0.20481145, + -0.17589259, + -0.072236665, + -0.041005112, + 0.11832172, + -0.037613764, + 0.33557138, + -0.6735503, + 0.28976914, + 0.15663981, + -0.024900129, + -0.2534804, + -0.05183752, + -0.4065746, + -0.3210622, + 0.1629321, + -0.16161339, + -0.41966227, + 0.0040207356, + -0.034227744, + -0.32704943, + 0.13198867, + -0.1669023, + 0.33475432, + -0.15265179, + 0.29567614, + 0.20430979, + 0.4855955, + 0.34293336, + -0.479745, + -0.19132362, + -0.11631518, + -0.75684476, + -0.5387814, + -0.3461076, + -0.30126983 + ], + "2025-05-20T05:32:04.733949", + "2025-05-20T05:32:04.733949", + -130.6657867432, + -5.6428070068, + -29.6639633179, + "0", + "ID: 13862191
Cluster: 0
Chunk: Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukture..." + ], + [ + 11699, + "von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.\n\nHesse-Matrix l\u00f6sen M. B\u00fcnner B3.02\n19 09.05.2025 13:30-15:00 Fr 4.4 Steepest Descent M. B\u00fcnner B3.02\n20 15.05.2025 13:30-15:00 Do 5.\n\nRestringierte Optimierung in 2D linear M. B\u00fcnner B3.02\n20 16.05.2025 13:30-15:00 Fr in 2D nichtlinear M. B\u00fcnner B3.02\n21 22.05.2025 13:30-15:00 Do Linear Programming M. B\u00fcnner B3.02\n21 23.05.2025 13:30-15:00 Fr Nonlinear Programming M. B\u00fcnner B3.02\n22 30.05.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\nM. B\u00fcnner B3.02\nHinweis:\n- Zwischen den Pr\u00e4senzterminen werden Coachings angeboten, die Termine dazu werden in der Pr\u00e4senzveranstaltung vereinbart.\n\nUnterschrift DozentLeistungsnachweis\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nProzent Art Form Hilfsmittel Bemerkungen Dauer (minuten)\n100%abgesetzte Modulschlusspr\u00fcfung schriftlich closed book eigener Taschenrechner nicht programmierbar 90\nFormelsammlung\nkeine\nUnterschrift Dozierende", + 18240, + 5933064, + null, + "md", + null, + [ + -0.5218154, + 0.13426243, + 0.46825144, + 0.22017159, + -0.27285972, + -0.035619803, + -0.3280491, + -0.19852506, + -0.15948859, + -0.4725128, + -0.87682056, + 0.38066867, + 0.68204814, + -0.77832884, + -0.29271296, + 0.8834769, + 0.22653359, + 0.1016869, + -0.29083347, + -0.7487563, + -0.9182125, + 0.06628891, + 0.4982129, + 0.79736966, + -0.7450637, + 0.021702912, + -0.49623805, + 0.32254717, + 0.39165622, + 0.6728145, + -0.20694828, + 0.38492647, + -0.13712877, + -0.6826968, + -0.7857164, + -0.29346603, + 0.3428663, + -0.048117593, + -0.95306414, + 0.53566486, + -0.20467556, + 0.63607115, + -0.1496102, + -0.9485281, + 0.45382833, + 0.44047022, + -0.6616231, + -0.49611348, + -0.0354804, + -0.4474402, + -0.39687717, + 0.32648695, + 0.17350808, + -0.7532869, + 0.769027, + -0.67411536, + 0.117820635, + 0.30585504, + 0.046293132, + 0.2492061, + 0.16829395, + -0.2062184, + -0.278263, + 0.0012786962, + 0.82924294, + -0.87960845, + 0.5231796, + -0.26407936, + 0.6066569, + 0.16336958, + 0.028656576, + 0.3724637, + 0.46770346, + -0.97330654, + -1.0355835, + -0.3733744, + 0.14204958, + -0.5127339, + 0.6391472, + -0.59550565, + -0.15315467, + 0.37998617, + -0.05196143, + 0.08567929, + -0.53681874, + -0.018131074, + 0.38652351, + 1.1281778, + -0.3159947, + -1.0691673, + 0.36076418, + 0.48334903, + -0.06896688, + 0.07090432, + -0.07764115, + -0.08227758, + 0.29714742, + -0.081590414, + 0.6832677, + 0.7774029, + -0.314649, + 0.8276121, + -0.3924025, + 0.4329938, + -0.63456583, + -0.3158543, + -0.6964059, + 0.7656432, + -0.29358765, + 0.044251714, + 0.5935919, + 0.08938551, + -0.36284658, + 0.7545475, + -0.2028428, + -0.4807071, + -0.6926457, + 0.20502637, + -0.12512188, + 0.11939093, + -0.011196971, + -0.40626916, + -0.16938147, + -0.75261956, + -0.030658351, + -0.39992115, + 1.0128741, + 0.5763147, + 0.027004955, + 0.113120094, + -0.19180319, + 0.39681336, + -0.099628955, + -0.085582584, + -0.39028254, + -0.43208677, + 0.031582244, + -0.14368996, + 0.54561144, + 0.20986195, + -0.8832573, + -0.8245904, + -0.25391674, + -0.12113949, + 0.47220448, + 0.28532746, + 0.113132775, + 0.29402786, + -0.41964287, + -0.24846517, + -0.53709227, + 0.41627502, + 0.007310286, + 1.4646508, + 0.23564908, + -0.7364678, + -0.71275187, + 0.43716463, + -0.15782805, + -0.3138234, + -0.5173079, + 0.008949224, + -0.45010677, + -0.13360988, + -0.3119706, + 0.95392275, + -0.16856728, + -0.33357173, + 0.5980733, + -0.7959715, + 0.38458765, + 0.70427257, + -0.0019510202, + -0.43840918, + -0.12841393, + 0.18648659, + 0.35626036, + 0.7374676, + 0.44698882, + -0.22703958, + 1.3622394, + 0.13820499, + -0.2739477, + -0.006104946, + -0.19188985, + -0.109438434, + -0.6390778, + -0.225923, + -0.06388359, + 0.58258075, + -0.59225315, + 0.28762913, + -0.27440026, + -0.12751752, + 0.6774172, + 0.4072271, + -0.09557539, + -0.45952606, + -0.15082344, + -0.46075124, + 0.5732196, + 0.2384744, + -0.5457002, + -0.04137841, + -0.09995257, + -0.24340849, + -0.23462786, + -0.090103514, + -0.013755925, + 0.39444718, + 0.42010134, + 0.017828332, + 0.8866703, + -0.068708844, + -0.17098089, + -0.5544612, + 0.09877368, + 0.3259165, + -0.09796945, + -0.45208776, + -0.054847404, + 0.2895752, + -0.23011853, + 0.21533857, + 0.65269035, + -0.938801, + 0.1060358, + 0.4805067, + 0.23852192, + -0.069653586, + -0.037512954, + -0.042256646, + -0.6129068, + -0.09447493, + -0.6339869, + -0.38920578, + 0.70324785, + 0.58179927, + 0.087214425, + -0.06344677, + 0.8160053, + 0.036546916, + 1.1522737, + -0.62548345, + 0.3006102, + 0.35481608, + 0.29935613, + 0.11245796, + 0.2757133, + 0.5268078, + 0.30976167, + -0.08117999, + -0.046539973, + 0.253215, + 0.43172544, + 0.43632928, + 0.12647122, + -0.18640372, + -0.4722876, + -0.09509695, + -0.19397604, + 0.12548703, + -0.0736975, + 0.13457043, + 0.04531188, + 0.15440387, + 0.5449947, + 0.2637123, + -0.2127468, + 0.068735465, + 0.14315109, + 0.343789, + 0.104511105, + 0.31635323, + 0.36777532, + -0.09846043, + -0.2073589, + -0.16534005, + 0.4012041, + -0.08074401, + 0.37185463, + -0.008287981, + -0.012111902, + -0.50337684, + 0.3312851, + -0.07554771, + -0.06730955, + 0.47047436, + 0.7569952, + -0.19431521, + -0.5821638, + 0.22945416, + 0.26007044, + -0.44829845, + -0.066208705, + -0.3238306, + -0.16951776, + -0.039687634, + 0.1437713, + -0.45331103, + 0.10925319, + -0.09458986, + 0.09938254, + -0.27249974, + 0.7351562, + -0.21128678, + -0.30086476, + -0.19648156, + -0.18262464, + 0.3975983, + -0.3738102, + 0.018587261, + 0.40805358, + -0.40764877, + -0.15850991, + -0.063035265, + 0.08210201, + 0.025341777, + 0.71950895, + 0.39816374, + -0.027505755, + 0.69080865, + -0.6561295, + -0.009786303, + 0.09360232, + -0.12829322, + 0.13388881, + -0.22216326, + 0.6755814, + -0.09015256, + 0.31525442, + -0.6520814, + 0.70733666, + -0.31127468, + -0.07359955, + 0.08796044, + -0.49167374, + 0.33357805, + -0.20963207, + -0.6901674, + 0.26195112, + 0.23049098, + 0.2566896, + 0.50416934, + -0.2615484, + 0.20364915, + -0.26399082, + -0.103528224, + 0.22187734, + 0.19637743, + -0.089634754, + -0.0024038665, + 0.12750787, + -0.2667323, + 0.20155233, + -0.23961926, + -0.026902154, + -0.5784007, + 0.52988225, + 0.27975446, + -0.04970567, + -0.3082805, + -0.030976977, + 0.37957177, + -0.67208445, + 0.20615438, + -0.16165751, + 0.40992796, + -0.54125524, + 0.06292571, + 0.34602576, + 0.13128854, + -0.13003483, + 0.39964718, + -0.050770823, + -0.53021306, + -0.15054798, + 0.019640934, + -0.0745736, + -0.58269, + -0.30677354, + 0.5991371, + -0.084702864, + 0.24749352, + -0.46418408, + 0.17796494, + 0.30588007, + -0.115597226, + 0.3591769, + 0.7915149, + -0.16346776, + 0.34415647, + -0.2547595, + 0.557577, + -0.13778156, + -0.18177813, + 0.22522505, + 0.09720023, + -0.028348768, + 0.4735776, + -0.14215831, + -0.03965075, + 0.03333099, + -0.16097637, + 0.48469257, + -0.20327547, + -0.3148808, + -0.013054885, + -0.43810052, + 0.11649414, + 0.37586164, + 0.39382353, + 0.38080588, + 0.15568528, + 0.25221074, + -0.0950552, + 0.054740954, + 0.4202591, + 0.26811305, + -0.31241524, + 0.14117825, + 0.17250937, + 0.9773261, + 0.05627183, + 0.4708211, + 0.46227318, + -0.3752956, + 0.23611245, + -0.49984804, + -0.1754927, + -0.0037310794, + -0.1079863, + -0.1991246, + 0.18798774, + -0.00787558, + -0.5548052, + 1.1306132, + 0.2124961, + -0.10995563, + -0.07259962, + -0.20488018, + -0.18622568, + 0.5115443, + -0.8214248, + 0.014191566, + -0.36520302, + -0.115861505, + 0.09461191, + -0.57542086, + 0.35698354, + -0.121462375, + 0.21045548, + -0.11836136, + 0.19236438, + 0.31922945, + -0.2516531, + 0.038711816, + -0.3933941, + -0.35398993, + 0.25637472, + -0.37381804, + 0.16288649, + -0.2153278, + -0.10002929, + -0.019279402, + -0.3956693, + -0.2484479, + -0.20767862, + 0.2506019, + -0.4375528, + -0.105473496, + -0.029040743, + 0.36207384, + 0.3775444, + 0.055385664, + -0.31955713, + -0.00752512, + -0.20883751, + -0.44460788, + 0.17438324, + 0.061688546, + 0.12023168, + 0.031900883, + 0.2888649, + -0.058811452, + 0.050583616, + -0.07790621, + -0.103337534, + 0.31411296, + 0.016671777, + 0.66554683, + -0.04194095, + 0.26946428, + 0.51145136, + -0.017753713, + -0.66459787, + -0.44526556, + 0.6279247, + -0.09880185, + 0.6404824, + -0.12499446, + 0.133944, + -0.11112064, + -0.5474458, + -0.107058965, + -0.31820634, + -0.105399124, + 0.2382508, + -0.09079871, + -0.2376006, + 0.21089727, + -0.21113336, + -0.50063235, + -0.3071646, + -0.0989658, + -0.14071453, + 0.038850434, + 0.121296674, + -0.032739498, + -0.3403598, + 0.0012457073, + 0.20050201, + -0.430511, + 0.14966497, + 0.8911996, + 0.36476782, + -0.3569046, + -0.39971578, + 0.31927553, + 0.11805504, + 0.11938761, + 0.05340088, + -0.024059467, + -0.013140626, + -0.10895747, + 0.2796601, + 0.36414564, + 0.12724015, + 0.117264085, + -0.26920307, + 0.18935283, + -0.37788126, + 0.26491812, + 0.03836885, + -0.39578414, + -0.27399176, + 0.09576878, + -0.45936072, + 0.043470427, + -0.24139321, + 0.1370526, + -0.0915978, + 0.04802484, + 0.39530408, + -0.3033863, + -0.88551193, + -0.08559283, + -0.013042171, + 0.010731339, + 0.17196198, + 0.12199037, + 0.43857682, + 0.5913921, + -0.76172465, + -0.1199759, + -0.042979926, + -0.27538475, + -0.27001467, + -0.0728898, + 0.6410136, + 0.049653575, + -0.6118575, + -0.29711524, + 0.24037957, + 0.48941308, + 0.13205482, + -0.3056218, + 0.044482008, + -0.081156194, + -0.29226223, + -0.26082405, + 0.800202, + 0.19209513, + -0.094285205, + 0.6886291, + -0.5026146, + -0.3717348, + -0.13368788, + -0.16371852, + 0.09436838, + 0.33724025, + -0.097497374, + -0.37112987, + -0.06843208, + 0.36826032, + 0.0818183, + -0.22348644, + -0.2747119, + -0.3776561, + 0.117175125, + -0.13242078, + 0.20043592, + -0.26945555, + 0.03280841, + -0.0040089116, + -0.1872156, + -0.15232569, + 0.21575336, + -0.7612926, + -0.14707524, + -0.6205926, + 0.48913363, + -0.3782239, + 0.23616967, + 0.11709538, + 0.25037113, + 0.052561417, + 0.027815893, + -0.28916466, + 0.43723518, + -0.059445873, + 0.636863, + 0.18809938, + 0.57049876, + 0.07958532, + 0.17305532, + 0.39124405, + -0.0062774904, + 0.503898, + -0.30876368, + -0.15661597, + 0.52583426, + -0.48679233, + 0.27252525, + 0.68553984, + -0.080513656, + -0.038847037, + 0.13802421, + 0.30497715, + 0.13907346, + 0.67069435, + -0.27178293, + 0.54257303, + 0.21552998, + -0.075775236, + -0.17724994, + 0.077523895, + 0.049475014, + 0.08560086, + 0.20922258, + -0.9404488, + -0.19571228, + -0.08674415, + 0.112936325, + 0.08354839, + 0.008865297, + -0.21505122, + -0.30628043, + 0.19815582, + 0.188812, + 0.06379986, + 0.11544903, + 0.123689815, + 0.009653847, + 0.50728315, + -0.12635753, + -0.08147973, + -0.31224707, + 0.00940571, + -0.21201977, + 0.2463466, + 0.088229015, + 0.47462377, + -0.20389467, + 0.26123762, + -0.12720963, + -0.1000029, + 0.07072121, + -0.048272256, + 0.334432, + 0.044561587, + -0.5251232, + -0.28216928, + -0.69202906, + -0.1754408, + -0.6967542, + 0.014111526, + -0.246032, + -0.022688538, + 0.029565163, + -0.7760069, + 0.22704361, + -0.24042653, + -0.45579317, + 0.20461822, + 0.42413843, + -0.2252774, + -0.04770711, + -0.04948879, + 0.263637, + -0.27865395, + 0.28368694, + 0.08015992, + 0.14739908, + -0.20991579, + -0.2049225, + -0.81662875, + 0.5266047, + 0.12261209, + -0.11437316, + -0.13735822, + 0.57897866, + -0.0663403, + 0.006658539, + -0.65256155, + 0.18555152, + -0.9480089, + -0.41142985, + -0.6038403, + -0.17173731, + -0.7295063, + 0.13199037, + 0.10280879, + 0.69076866, + 0.083648056, + -0.10172212, + 0.101228535, + 0.111999236, + -0.11536741, + -0.26732275, + 0.0082990825, + -0.21130167, + -0.021774545, + -0.3154509, + 0.5458674, + -0.6411141, + 0.24367085, + -0.11844016, + -0.13519773, + -0.3044447, + 0.48632115, + 0.8006941, + 0.37513155, + 0.25094146, + -0.22720873, + 0.4931678, + 0.34433165, + -0.050538603, + 0.14728737, + -0.23551449, + -0.22003126, + 0.20765723, + 0.10737207, + 0.03030815, + -0.22015391, + 0.18034646, + 0.16651878, + 0.38133097, + 0.078352645, + 0.09627759, + 0.11878823, + 0.18473156, + -0.3735446, + -0.54580003, + 0.2797028, + -0.83601874, + 0.010982415, + 0.100731656, + 0.09634161, + -0.488535, + -0.35092002, + -0.13043837, + -0.65370864, + -0.19786915, + 0.09875173, + 0.68061817, + -0.38968503, + 0.6443573, + -0.7286077, + 0.17616953, + -0.2447235, + -0.2415595, + 0.06652147, + 0.13452877, + 0.31980175, + 0.27025998, + 0.015555918, + 0.01066795, + -0.077336825, + -0.30378532, + 0.32484263, + -0.8433423, + 0.021996524, + -0.12263815, + -0.018726293, + 0.36315084, + -0.19786628, + -0.120964155, + -0.039402217, + 0.017284155, + 0.31246352, + 0.2814462, + 0.24816597, + -0.48401278, + 0.19098657, + 0.3940527, + -0.19750525, + -0.32033142, + -0.32913584, + -0.47498146, + 0.28825587, + 0.11740823, + 0.13189659, + 0.73112, + 0.072895646, + 0.086514324, + -0.3185462, + -0.19566031, + -0.46675187, + -0.2715199, + -0.21552446, + 0.028827041, + 0.34137058, + 0.20380215, + -0.20004453, + 0.042472042, + 0.6920699, + -0.35105112, + -0.22578964, + 0.1168176, + -0.24182712, + 0.5380742, + -0.38166916, + 0.14016229, + -0.40625197, + -0.15129685, + 0.2756821, + -0.30576098, + -0.30310315, + 0.26056603, + -0.754961, + 0.093633935, + 0.11803855, + -0.2995075, + -0.011835106, + 0.17248556, + 0.17824592, + 0.118864775, + -0.3892701, + 0.085995935, + 0.24911074, + 0.5255613, + -0.11115063, + -0.47906637, + -0.3701433, + 0.09395428, + 0.58050156, + 0.07723803, + 0.0015931902, + 0.06329644, + -0.43098962, + 0.4837343, + -0.4786447, + -0.19599874, + 0.5352669, + -0.6255225, + -0.15144241, + 0.48629045, + -0.04263085, + 0.3098023, + -0.01508981, + 0.331526, + -0.37000778, + 0.08684442, + -0.12284409, + -0.100356966, + -0.09139885, + 0.52123916, + -0.08628828, + -0.27930892, + 0.3738008, + 0.2572375, + -0.0011562984, + -0.16479532, + 0.4593519, + -0.1113591, + 0.81771773, + -0.31759295, + -0.13989103, + 0.24458805, + -0.036107145, + -0.20825037, + 0.07338093, + 0.52146316, + -0.52003807, + 0.184212, + -0.17052552, + -0.44024983, + 0.2009593, + -0.17866465, + 0.16818354, + -0.022748139, + -0.43057233, + -0.012033135, + 0.12271339, + 0.50483054, + -0.27798793, + 0.17789775, + 0.12701146, + -0.58668554, + 0.03632798, + 0.36367613, + 0.1916166, + -0.3890978, + 0.30791497, + 0.42691162, + 0.035812177, + 0.17502831, + -0.9206348, + -0.078505896, + -0.2267856, + 0.015043829, + 0.38227808, + 0.36170214, + -0.27456945, + -0.47960344, + 0.30093563, + 0.07031269, + -0.1994276, + 0.08345346, + 0.4251041, + 0.14488429, + 0.0965112, + -0.008161344, + -0.11101701, + 0.29011542, + 0.40992376, + 0.40148395, + -0.17543253, + -0.15346743, + 0.25607938, + -0.30666542, + 0.29985878, + 0.5871304, + 0.77165866, + 0.20368761, + 0.009256296, + 0.44215554, + 0.09308245, + 0.1360048, + 0.45271876, + 0.42241794, + -0.06726071, + 0.37504214, + -0.29960194, + 0.12961185, + 0.11510573, + 0.43381715, + 0.031512998, + -0.8976091, + 0.16776606, + 0.23242494, + -0.16913465, + -0.2567479, + -0.49470878, + 0.19878198, + 0.2170944, + -0.48253524, + -0.29823598, + 0.10230056, + -0.1448341, + 0.18055469, + -0.072831854, + 0.30260986, + 0.4726785, + -0.05236153, + -0.23567304, + -0.12910676, + 0.22360691, + 0.04732488, + -0.37579983, + 0.0007204786, + -0.045910828, + -0.060151733, + 0.82657385, + -0.34703535, + -0.2988624, + -0.065210775, + -0.67594135, + -0.41743672, + 0.17592362, + 0.06410084, + -0.057956014, + 0.043374926, + 0.19466996, + -0.10271456, + 0.32020754, + 0.27690572, + -0.2919115, + -0.3439978, + -0.08437498, + -0.05503525, + -0.12634538, + -0.13979745, + -0.43783092, + -0.18496895, + 0.18807717, + 0.4498935, + 0.18174666, + 0.10028727, + -0.40126488, + 0.0047668377, + 0.24156255, + 0.44985616, + 0.85849625, + 0.012872249, + 0.2878073, + -0.25471023, + -0.4243075, + -0.5045351, + 0.16361544, + 0.057520743, + -0.056678377, + -0.0073728915 + ], + "2025-05-20T05:32:04.768603", + "2025-05-20T05:32:04.768603", + -89.263923645, + 49.2649116516, + 36.4610939026, + "0", + "ID: 5933064
Cluster: 0
Chunk: von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton..." + ], + [ + 11700, + ")\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\nFachhochschule Graub\u00fcndenAUFGABE 4: (6 Punkte)\nF\u00fchren Sie Shellsort mit den Schrittweiten 7, 3, 1 aus: (6P)\n1 2 3 4 5 6 7 8 9 10 11 12 13 14\n15 30 17 10 11 4 6 9 2 1 7 32 5 3\nDokumentieren Sie die Schritte so wie in der Vorlesung und den \u00dcbungen.\n\nFachhochschule Graub\u00fcndenAUFGABE 5: (10 Punkte)\n(a) Ordnen Sie die Folge in einem Max-Heap und speichern diesen in einem Feld A=[\u2026.]\n\nab.\n\nDokumentieren Sie\ndie Zwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n4P)\n9\n4 5\n7 10 6 8\n(b) Nehmen Sie das Ergebnis von (a) und f\u00fchren drei Basis-Schritte von Heapsort durch.\n\nDokumentieren Sie die\nZwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n6P)\nFachhochschule Graub\u00fcndenFachhochschule Graub\u00fcndenAUFGABE 6: (6 Punkte)\n(a) Bestimmen Sie die Balancefaktoren des bin\u00e4ren Suchbaums.\n\nHandelt es sich um ein AVL-Baum? (\n\n2P)\n(b) L\u00f6schen Sie aus dem AVL-Baum das Element \u00ab17\u00bb.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\n(c) F\u00fcgen Sie danach das Element \u00ab15\u00bb hinzu.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\nFachhochschule Graub\u00fcnden", + 18240, + 16236743, + null, + "md", + null, + [ + -0.018229347, + -0.38892946, + 0.31161425, + -0.998932, + -0.04421944, + 0.012323308, + 0.056399006, + 0.34804738, + 0.35307953, + -0.35841677, + 0.3690997, + 0.15030643, + 0.11480969, + 0.61793154, + 0.32586882, + 0.2682585, + -0.044980027, + -0.11192055, + -0.41985622, + 0.1185541, + -0.46477506, + 0.2617688, + 0.1582423, + 0.40720466, + 0.52699876, + -0.09980139, + -0.1658657, + -0.33146667, + -0.48378333, + 0.4715847, + -0.2603933, + 0.22985356, + -0.35564688, + -0.2665626, + -0.37282786, + -0.3708576, + 0.27705535, + -0.17555547, + -0.1007064, + 0.8787912, + -0.6361571, + 0.8462863, + -0.41491386, + -1.0743575, + -0.119222954, + 0.21616627, + 0.351656, + -0.1425808, + -0.14000267, + -0.03204943, + -0.3830869, + 0.43982428, + -0.07756342, + -0.12913339, + 0.27947193, + -0.61557776, + 0.37603986, + 0.15845044, + -0.054483056, + -0.4951737, + 0.21252012, + 0.36411726, + -0.0046239756, + 0.21580538, + 0.59083176, + -0.6260606, + 0.24970117, + -0.20502728, + -0.3359949, + 0.16517954, + 0.2724517, + 0.059889525, + -0.42903987, + 0.16454907, + -0.15162434, + -0.26855993, + 0.6151786, + -0.18166679, + -0.5859667, + 0.8314198, + 0.4218077, + -0.0015567616, + 0.049931765, + 0.42144158, + 0.023435399, + -0.24164206, + 0.17575556, + 0.7778537, + -0.16712096, + -0.4808951, + 0.6233034, + 0.31061238, + -0.22306338, + -0.034370556, + -0.55864716, + -0.2600461, + -0.49306524, + -0.05329446, + 0.39308465, + 0.6799174, + -0.65429705, + 1.0149189, + 0.60166526, + 0.07968297, + 0.5361366, + -0.5028575, + -0.3678366, + 1.2766347, + -0.8330879, + -0.27658212, + 0.603146, + -0.34365514, + 0.11803521, + 0.66272044, + 0.03782097, + -0.15429789, + -0.39171734, + 0.52450746, + 0.87300414, + -0.50774133, + -0.14718792, + -0.4770277, + 0.5875298, + -0.33968338, + -0.057348274, + -0.34422478, + 0.61758184, + 0.0010380298, + 0.25055075, + -0.17092654, + -0.45831773, + -0.014332555, + 0.20707978, + -0.5424851, + -0.58927, + -0.40313384, + 0.291591, + 0.15818128, + -0.18096143, + -1.1520605, + 0.14482614, + -0.33832714, + -0.34577534, + -0.4189722, + 0.54026145, + -0.29661858, + -0.013932389, + 0.3942689, + -0.59777224, + -0.25342214, + 0.13924825, + 0.71153593, + 0.8341156, + 0.41663066, + 1.8186315, + 0.5404852, + -0.3953351, + -0.27634558, + -0.15979046, + 0.15899405, + 0.18873337, + 0.7713568, + -0.9970588, + -0.9028517, + -0.12983763, + 0.33623406, + -0.33942837, + -0.14162262, + 0.07100285, + -0.4347438, + 0.022010744, + -0.100848645, + 0.084925756, + -0.6840328, + -0.26973814, + 0.31043303, + -0.091202885, + -0.4218042, + -0.23496455, + 0.09538148, + 1.0878911, + 0.48636362, + -0.5418434, + -0.24636929, + -0.013851576, + 0.0721021, + 0.29699033, + 0.007336747, + -0.29217142, + 0.0568149, + 0.441849, + -0.41095084, + -0.106402114, + 0.09873009, + -0.21215427, + 0.47781408, + -0.36138004, + 0.005564302, + -0.41996172, + -0.6707829, + 0.94199574, + -0.64256895, + -0.42259702, + -0.375621, + -0.2737278, + 0.23330274, + 0.5756949, + -0.19174035, + 1.1457402, + -0.53672636, + 0.30635548, + 0.3384524, + 0.80478215, + 0.9900275, + 0.04303173, + -0.71226245, + 0.7321291, + 1.3905417, + -1.3358728, + -0.80769503, + 0.16552304, + -0.5667762, + -0.75118524, + -0.4930314, + 0.25538325, + -1.0443759, + -0.18207371, + 0.3469569, + 0.5496786, + 0.21378389, + -0.06737299, + -0.10585939, + -0.050389178, + -0.09389816, + -0.7647808, + 0.19850203, + -0.23627529, + 0.39635578, + -0.34711558, + -0.34446058, + 0.36801925, + -0.41110456, + 0.2166468, + 0.5072785, + 0.7598471, + 0.13406558, + 0.16882932, + 0.39486572, + -0.0680946, + 0.2502569, + 0.7689801, + -0.7969756, + -0.009615103, + -0.15787393, + 0.3503063, + 0.44763875, + 0.2925564, + -0.079661, + -0.20652108, + -0.5655483, + 0.12386164, + 0.35362646, + 0.5001809, + 0.1687677, + -0.24397776, + 0.36151022, + -0.43289745, + 0.3514371, + -0.42866826, + -0.25388494, + -0.4553959, + 0.31875932, + -0.08147031, + 0.07435901, + 0.48942688, + -0.63692045, + -0.17238647, + -0.2586591, + 0.3846915, + -0.43818194, + 0.05904032, + 0.0035344511, + -0.05161597, + -0.27255395, + 0.34643832, + -0.6748918, + -0.1249262, + -0.5344309, + -0.015655324, + 0.07066979, + 0.45409656, + 0.09392263, + 0.3818069, + -0.10677363, + -0.24060169, + 0.43263775, + -0.49030846, + -0.04223478, + 0.12008931, + -0.17562367, + 0.25338557, + -0.16204259, + 0.15212646, + -0.33447888, + -0.35443416, + -0.001737617, + 0.33329016, + -0.07222566, + -0.15994394, + 0.67969114, + -0.26071313, + -0.32118583, + 0.21294415, + -0.38277954, + 0.15502846, + -0.22226845, + 0.20619917, + 0.13999632, + 0.24121243, + 0.18948224, + 0.035116397, + 0.68141454, + -0.21251358, + -0.2239954, + -0.5722777, + -0.353563, + 0.14526376, + -0.034825005, + -0.30235094, + -0.062367946, + 0.27419096, + -0.16130567, + 0.13423148, + -0.1603713, + 0.0642059, + -0.39987704, + -0.33286893, + 0.41524208, + -0.019982241, + -0.2105211, + -0.0058602653, + 0.05448863, + -0.13675047, + 0.9658878, + -0.3123094, + -0.16285345, + 0.276977, + -0.4323043, + 0.24670798, + 0.11427021, + -0.6502541, + -0.18631539, + -0.023932062, + -0.040818814, + 0.043948643, + -0.27182996, + 0.1819926, + 0.08743136, + 0.36973, + 0.20381969, + -0.041775517, + -0.4341808, + -0.13765702, + -0.18682778, + -0.5030552, + -0.03318193, + -0.089993306, + 0.46894568, + -0.30822432, + 0.018473584, + 0.20325498, + -0.29532567, + 0.119396575, + 0.44659585, + -0.18583336, + 0.24080503, + -0.28012937, + 0.30213684, + -0.5244217, + -0.20940064, + -0.28498858, + 0.08786593, + 0.2541144, + 0.045374736, + -0.059167355, + 0.21902563, + 0.34954053, + -0.48981482, + -0.3553667, + 0.13103248, + -0.31352955, + 0.40137473, + 0.3390946, + 0.47903043, + -0.029377524, + 0.004885504, + 0.0062687173, + 0.89428204, + 0.13411681, + -0.19532733, + -0.27581623, + -0.059906866, + -0.042758252, + 0.06649107, + 0.3376034, + -0.107037246, + -0.3275565, + 0.08542758, + -0.072785504, + 0.30401182, + -0.24870998, + 0.15606639, + 0.20558405, + -0.43860784, + 0.18208586, + 0.08504175, + 0.524622, + 0.53525436, + -0.115856566, + 0.6688049, + -0.046068996, + 0.23320353, + -0.09978776, + 0.47988975, + 0.27435145, + -0.0035621598, + -0.67128056, + 0.17947665, + -0.2735452, + -0.1351381, + 0.45114335, + 0.1415885, + 0.051984277, + 0.1278179, + 0.19339925, + -0.3583363, + 0.38548353, + -0.4179701, + -0.025019638, + 0.2872048, + 0.6347997, + 0.25344118, + -0.23386009, + -0.3437534, + 0.50749433, + -0.21190818, + -0.04043909, + -0.11562124, + -0.1844245, + 0.36392206, + -0.38555613, + -0.0841493, + -0.011907487, + 0.25210756, + -0.27303907, + -0.67684287, + 0.07739195, + -0.14256062, + 0.09494643, + -0.37412065, + 0.07879837, + 0.02760696, + 0.74798006, + -0.1921193, + 0.03745932, + -0.25477254, + -0.10415161, + -0.18509343, + -0.0069691287, + -0.039108697, + 0.19168107, + 0.7282998, + 0.028168857, + 0.07410474, + -0.019786596, + -0.22739558, + -0.28408796, + -0.2569203, + 0.019245874, + 0.5297329, + -0.1272976, + 0.6565297, + 0.4344055, + 0.16363716, + -0.43685853, + 0.11439312, + -0.11398915, + -0.12823598, + -0.07585599, + 0.46079487, + 0.16451138, + -0.48338264, + -0.20386282, + 0.33779445, + -0.14579774, + -0.25565612, + 0.16507417, + 0.1870849, + -0.16147012, + 0.45945483, + 0.06192082, + 0.07872937, + 0.8355732, + -0.60722905, + 0.027040295, + -0.26177773, + -0.15440087, + 0.19818307, + -0.10661499, + 0.1503135, + -0.18273343, + 0.09991827, + -0.044943303, + 0.09000377, + -0.37091625, + 0.45061427, + -0.007877663, + 0.20330086, + -0.044130635, + -0.2723735, + -0.0751419, + -0.478388, + -0.16905817, + 0.22130693, + -0.086562924, + -0.066582784, + -0.064444855, + -0.51260114, + 0.17492774, + 0.14611411, + -0.53830856, + -0.43540722, + 0.27119192, + 0.08023027, + -0.120942935, + -0.39865977, + 0.11607893, + 0.11479404, + 0.06996767, + 0.4214141, + -0.07742136, + -0.23684804, + -0.5008473, + 0.606261, + -0.6358237, + -0.38973525, + -0.17402242, + -0.0055573657, + -0.42926174, + -0.0012840331, + -0.4609781, + 0.3518194, + -0.3486486, + 0.05429156, + -0.11537174, + 0.041738637, + -0.009058211, + 0.14988147, + 0.29864255, + 0.15790433, + 0.32948518, + 0.24843192, + 0.1815826, + -0.05169136, + -0.55581814, + -0.6451794, + -0.36288118, + -0.17284256, + 0.046965428, + 0.121676356, + -0.08904963, + -0.041933037, + -0.04235173, + -0.14947546, + 0.47157097, + 0.5569694, + 0.2884232, + 0.30457747, + -0.10511264, + -0.19000491, + -0.5133766, + -0.112978354, + 0.78154165, + 0.50641227, + 0.4522264, + -0.5294063, + -0.12479051, + -0.28724095, + -0.17710923, + 0.07329555, + 0.19793797, + 0.032984685, + -0.33899304, + -0.038813353, + 0.07340428, + -0.13955446, + -0.085322246, + -0.503956, + -0.08425811, + -0.36768347, + 0.2573258, + 0.6481876, + -0.15966395, + -0.046988346, + 0.6221118, + -0.20062491, + 0.67258936, + 0.42340744, + 0.08976433, + 0.11112916, + -0.3671008, + -0.14531773, + -0.14288002, + 0.07632336, + 0.004283201, + -0.08826988, + -0.025962383, + 0.012545101, + -0.31878218, + -0.24617323, + 0.096753076, + 0.30672807, + -0.21176839, + 0.2829942, + -0.029912943, + 0.39350352, + 0.4040698, + 0.15272102, + 0.8812311, + -0.5271896, + 0.47252285, + 0.7781497, + 0.20350254, + -0.022002522, + 0.1221665, + 0.07317624, + -0.64002466, + -0.3055098, + 0.009426033, + 0.42207348, + -0.06335666, + -0.4448423, + 0.0037898829, + 0.013348915, + -0.17157775, + 0.2775989, + 0.25295314, + 0.22898032, + -0.3894848, + 0.18502195, + -0.041814707, + -0.3550853, + -0.043235227, + -0.45665523, + 0.06509272, + -0.23987833, + -0.28020525, + -0.13324238, + -0.028157458, + -0.7596569, + -0.42363608, + -0.07097531, + 0.14894561, + 0.04741678, + 0.30851614, + -0.50894046, + 0.5390944, + -0.22990933, + 0.13007292, + 0.3517871, + -0.45477283, + -0.4510594, + -0.073965944, + -0.22014761, + 0.18206757, + 0.19716668, + 0.34684664, + 0.37089723, + -0.055021096, + 0.54446614, + -0.2247338, + -0.533343, + 0.108561866, + 0.30025923, + -0.29784966, + -0.2573285, + 0.11022765, + -0.101726174, + -0.38798442, + 0.5760529, + -0.08983798, + 0.011150442, + -0.36853144, + -0.026944622, + 0.17506209, + 0.27766454, + -0.6795184, + 0.21785249, + -0.41907167, + 0.28276035, + -1.0258608, + -0.41148737, + -0.13436005, + 0.08078878, + -0.4335461, + 0.5755294, + 0.16989003, + -0.008498371, + -0.14319532, + -0.6014378, + 0.6671432, + 0.066613324, + -0.7454445, + 0.44027686, + -0.38283327, + -0.035588376, + -0.28626272, + -0.20548731, + 0.2865669, + -0.18520164, + -0.19502959, + 0.07265054, + -0.28762037, + -0.19950248, + -0.07282463, + -0.31952727, + -0.3213535, + -0.16874969, + 0.46122915, + -0.14917761, + 0.162947, + -0.009246826, + 0.53336763, + -0.8705404, + 0.09888415, + -0.40653735, + 0.38938388, + 0.027511239, + -0.25161484, + -0.17021312, + 0.38291126, + 0.32822832, + 0.07997799, + 0.07524532, + -0.10827035, + -0.2827577, + -0.2646949, + 0.27239037, + 0.1315653, + 0.1374738, + -0.23992547, + -0.25597024, + -0.015296372, + 0.28959054, + -0.07862954, + 0.076603934, + 0.009404285, + -0.117970854, + -0.18131335, + -0.14829876, + -0.32168055, + 0.03422135, + -0.01776174, + -0.41120923, + 0.06933791, + -0.8406516, + 0.086706206, + -0.10212784, + 0.40903714, + -0.35444257, + -0.11590188, + 0.2722869, + -0.43193713, + -0.4222078, + -0.021239787, + 0.36516953, + 0.14544973, + 0.20796755, + -0.62568617, + 0.45604226, + -0.15401757, + -0.046251427, + 0.24469548, + 0.2688783, + 0.41817942, + -0.014270052, + 0.26363447, + -0.56646806, + -0.34615153, + -0.034759, + 0.41862416, + -0.46545768, + 0.08229132, + -0.13270155, + -0.5677002, + 0.63111234, + 0.2596541, + 0.12283601, + -0.14381596, + -0.5200045, + 0.16247751, + 0.10708432, + -0.026053613, + -0.46887738, + 0.3410792, + -0.36315095, + -0.37799135, + 0.48338407, + -0.09344123, + -0.18602778, + 0.2459087, + -0.23041093, + -0.07316458, + 0.6333394, + -0.21460806, + 0.16264418, + -0.3101555, + -0.615785, + 0.07898238, + -0.48269194, + -0.5539573, + 0.3714304, + -0.17001584, + -0.1920317, + -0.21740521, + 0.18438064, + 0.55829275, + -0.11160733, + -0.1441912, + 0.23416482, + 0.2088845, + 0.36075255, + -0.2636078, + 0.2345444, + 0.10606591, + 0.06909073, + 0.39305392, + 0.13861075, + 0.37287855, + 0.39561936, + -0.059736114, + 0.028581059, + 0.056182273, + -0.40329337, + 0.55491626, + -0.07037347, + 0.40794763, + 0.4534529, + 0.23343173, + -0.13170469, + 0.7594545, + 0.63004977, + -0.34974957, + -0.21886761, + -0.42451602, + 0.2951904, + -0.18564767, + 0.1912238, + 0.10706264, + -0.08987443, + 0.30751154, + -0.67614603, + -0.5998329, + -0.13880143, + -0.0068685487, + -0.44311613, + -0.07512867, + 0.24813911, + 0.04873722, + -0.15885213, + -0.23684226, + 0.2475726, + 0.09944974, + -0.030137006, + 0.34758648, + 0.07211429, + -0.4041363, + 0.09193742, + 0.23618798, + 0.11474047, + -0.21159291, + 0.5940229, + 0.0063367435, + 0.5461079, + 0.08338907, + -0.40724817, + 0.6022566, + -0.43364877, + -0.2473479, + -0.02587109, + 0.3781109, + -0.36189076, + 0.396095, + 0.31727356, + -0.12325859, + -0.04715323, + 0.0019984841, + -0.16817033, + -0.15687348, + -0.34329516, + -0.11947553, + 0.11585216, + -0.15938908, + 0.31871808, + 0.38262844, + -0.10130851, + 0.15439433, + 0.37670603, + -0.17302158, + -0.11083955, + -0.29263696, + 0.46612966, + 0.32472345, + -0.13475867, + -0.3512682, + 0.04604502, + -0.11593554, + 0.26702392, + -0.13062313, + 0.05754915, + 0.33464542, + 0.23133893, + 0.031399533, + 0.15590928, + -0.24748865, + -0.19892445, + 0.43300802, + -0.12593162, + -0.24474227, + -0.21371934, + 0.09796097, + 0.30257678, + 0.26922616, + 0.20498958, + -0.67369646, + 0.17638557, + 0.4599571, + 1.0533913, + -0.53544515, + 0.25076717, + 0.56635267, + -0.12809256, + 0.40096483, + 0.79718053, + 0.54696405, + -0.14584106, + -0.053031515, + 0.25434327, + -0.066534, + -0.25895834, + 0.64243287, + 0.8302413, + -0.4680212, + -0.14579968, + -0.18870805, + -0.2210941, + 0.30907232, + -0.049101323, + 0.27654153, + -0.41045102, + -0.16563392, + -0.5355203, + -0.29183426, + -0.10685755, + -0.15846011, + 0.26668125, + 0.027506568, + 0.6006899, + -0.007644766, + 0.075106, + 0.29561883, + -0.27969143, + 0.09134356, + 0.70824856, + 0.2531883, + -0.17030288, + 0.035528224, + -0.20337613, + -0.41391578, + 0.269198, + -0.5355944, + 0.1501446, + -0.6192578, + 0.10445654, + -0.043698445, + -0.5165609, + 0.13628751, + 0.09448125, + 0.5168838, + -0.11068532, + -0.04298596, + 0.39610946, + 0.449314, + -0.2734397, + -0.45600155, + 0.13727772, + -0.33093995, + 0.066970214, + -0.42359304, + 0.1823718, + 0.14154774, + 0.14137585, + 0.37864006, + 0.20897156, + -0.9816803, + -0.069341645, + -0.3710667, + 0.48590592, + 0.3089084, + -0.50681055, + 0.2535409, + -0.007899631, + 0.41618562, + 0.043761127, + 0.4979268, + 0.056253623, + 0.38821036, + -0.05175347, + 0.03183897, + 0.4026068, + -0.33801413, + -0.26499084, + 0.1655985, + 0.94635916 + ], + "2025-05-20T05:32:08.870002", + "2025-05-20T05:32:08.870002", + -48.5946006775, + 24.0425033569, + -75.3658218384, + "2", + "ID: 16236743
Cluster: 2
Chunk: )\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie..." + ], + [ + 11701, + "A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner Martin\nVorname, Nachname: ________________________________________________________\nBearbeitungszeit ::: 90 Minuten\nErlaubte Hilfsmittel ::: Eigener Taschenrechner\nDisclaimer :::\nL\u00f6sungsweg muss klar ersichtlich sein, unbelegte Resultate k\u00f6nnen nicht ber\u00fccksichtigt werden.\n\no\nKeine Kommunikation unter den Studierenden oder mit Dritten.\n\no\nW\u00e4hrend der Pr\u00fcfung sind Smartphones und Smartwatches auszuschalten.\n\no\nWiederholungsrecht f\u00fcr die Pr\u00fcfung ist bei Betrug verwirkt.\n\no\nL\u00f6sungen m\u00fcssen schriftlich abgegeben werden.\n\no\nHinweise f\u00fcr die Studierenden :::\nPr\u00fcfungsbl\u00e4tter nur einseitig beschriften.\n\no\nLesen Sie zuerst alle Aufgaben sorgf\u00e4ltig durch, bevor Sie zu l\u00f6sen beginnen.\n\nBearbeiten Sie alle\no\nFragestellungen.\n\nDie Aufgaben sind nicht nach Schwierigkeitsgrad geordnet.\n\no\nFachhochschule Graub\u00fcndenAUFGABE 1: (10 Punkte)\n(a) Eine verkettete Liste mit 4 Elementen A[1\u20264] sei mit den jeweiligen Zeigern im Speicher wie folgt abgelegt\nmit A[1] \uf0e0 2001.\n\nErg\u00e4nzen Sie die fehlenden Eintr\u00e4ge so wie in der Vorlesung und den \u00dcbungen. (\n\n4P)\n(b) Zeichnen Sie den Graphen mit der Adjazenzliste: (2P)\nFachhochschule Graub\u00fcnden(c ) Ein bin\u00e4rer Baum ist mit Zeigern im Speicher abgelegt.\n\nTragen Sie die fehlenden Zeiger in die Tabelle ein (wie in\nder Vorlesung und den \u00dcbungen): (4P)\nFachhochschule Graub\u00fcndenAUFGABE 2: (8 Punkte)\n(a) Wir suchen das Feld in der Skipliste mit dem Wert 2.\n\nWelche Werte der Skipliste werden gepr\u00fcft? (\n\n2P)\n(b) Zeichnen Sie einen bin\u00e4ren Suchbaum der Tiefe 3. (\n\n2P)\nFachhochschule Graub\u00fcnden(c) F\u00fcgen Sie nacheinander die folgenden Elemente in einen bin\u00e4ren Suchbaum ein:\nMarlen, Adrian, Peter, Urs, Mike, Bernd, Carl, Karsten, Sabine, Susanne, Christine, Kirsten, Alexander. (\n\n4P)\nFachhochschule Graub\u00fcndenAUFGABE 3: (8 Punkte)\n(a) F\u00fcgen Sie in dem bin\u00e4ren Suchbaum das Element mit dem Schl\u00fcssel-Wert 11 ein.\n\nWie sieht der\nSuchbaum danach aus? (\n\n2P)\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\nWie sieht danach der Suchbaum aus? (", + 18240, + 14594744, + null, + "md", + null, + [ + -0.30515555, + -0.14859733, + -0.2907506, + -0.9129415, + 0.1334666, + 0.35424015, + 0.19413741, + 0.061239563, + -0.12346785, + -0.28735802, + 0.3367314, + 0.25140816, + 0.17027909, + -0.14460994, + 0.23843019, + -0.13566323, + 0.37057465, + -0.16810408, + -0.22692493, + -0.04520729, + -0.30817518, + 0.82013404, + -0.27978626, + -0.55596495, + 0.450278, + 0.2624361, + -0.5647471, + -0.21176696, + 0.0015793238, + 0.6738452, + -0.36007595, + -0.6481569, + -0.16622557, + -0.05394174, + 0.17143127, + -0.2848207, + 0.45293003, + 0.20632371, + 0.2551156, + 0.2597976, + -0.06598796, + 0.27511194, + -0.39344078, + -0.7374856, + -0.09233965, + 0.23792689, + 0.09954536, + 1.2445338, + 0.024646893, + 0.22494763, + 0.048621483, + 0.4329353, + -0.4409988, + -0.08099344, + -0.37433723, + -0.13059193, + -0.16031404, + -0.2840599, + -0.7470587, + -0.05618491, + 0.03266052, + -0.15373008, + 1.1586397, + -0.19353671, + -0.23090734, + -0.10786878, + 0.03016441, + -0.19961849, + 0.9300144, + -0.37786642, + 0.74176204, + -0.01666043, + -0.6710729, + -0.28802338, + 0.056510285, + -0.16190915, + 0.2120038, + -0.017909005, + -0.7946408, + 1.0274469, + -0.2990196, + 0.5437434, + 0.47989866, + 0.086471684, + -0.36924022, + -0.26142856, + -0.053407654, + 0.5034002, + -0.085252374, + 0.44102576, + -0.048045043, + -0.08855205, + -0.4612468, + 0.6919998, + -0.48854536, + -0.15525071, + -0.19412427, + -0.29970333, + 0.6284504, + 0.14907825, + -0.7797276, + 0.9818813, + 0.6869283, + 0.06316834, + -0.41114044, + -0.16765456, + 0.062882006, + 0.23331957, + -0.34290302, + -0.39330554, + -0.36645693, + 0.2778853, + -0.14589651, + 0.7341792, + -0.43014118, + 0.09676452, + -0.7998611, + 0.8426324, + 0.16843122, + -0.6222976, + 0.27563375, + -0.39530858, + 0.327616, + -0.28386012, + 0.46443373, + -0.25841266, + 0.8985802, + 0.24036434, + -0.1371811, + -0.173087, + 0.042655084, + 0.53516394, + 0.14924099, + -0.18016131, + -0.049184646, + -0.4044009, + -0.42211488, + -0.4375518, + -0.06414524, + -0.25074887, + 0.23781544, + -1.0173606, + -0.06774359, + -0.7243294, + 0.71213824, + 0.14270625, + 0.3649372, + -0.23115358, + -0.436748, + 0.31907964, + 0.67910147, + 0.5286133, + 0.65115845, + -0.051956587, + 0.5821675, + 0.4482054, + -0.4505784, + -0.019533586, + -0.017179854, + -0.031237707, + -0.01932006, + 0.27662265, + -0.55173653, + -0.8267486, + -0.44777498, + 0.05661215, + -0.41320193, + 0.08677849, + -0.15704724, + -0.49167413, + -0.10330658, + -0.6850906, + 0.22465493, + -0.107214436, + -0.88666993, + 0.3273317, + 0.010182396, + 1.2605767, + -0.65244806, + 0.41014603, + 0.035778027, + 0.51228243, + -0.82852745, + 0.44214615, + -0.16086142, + -0.13236143, + 0.6592305, + 0.11018216, + 0.097205535, + -0.09968153, + 0.51393217, + -0.30260217, + 0.16281864, + 0.046413798, + 0.5165966, + -0.03630536, + -0.14047581, + -0.5465833, + 0.1618812, + -0.46164995, + 0.25813964, + -0.385388, + -0.64817506, + -1.0548141, + -0.05287013, + -0.29432148, + 0.2500341, + 0.18900497, + 0.9383664, + -0.20885831, + 0.31603724, + 0.23351529, + -0.27929574, + 0.39391497, + 0.35117394, + -0.26059914, + 0.58039486, + -0.109280236, + -0.9323228, + 0.16530116, + 0.07734762, + -0.61003643, + -0.036286164, + -0.18970047, + 0.41734785, + -0.008525293, + -0.14288521, + -0.49945635, + 0.9454537, + 0.10047979, + 0.4719326, + 0.34077406, + -0.312416, + -0.096835665, + -0.3463452, + 0.0055888155, + -0.49824238, + 0.46546438, + -0.040646266, + 0.041466553, + -0.66947925, + -0.22239675, + 0.40822726, + 0.13631563, + 0.18755145, + -0.2790493, + -0.5025383, + 0.57094187, + 0.0041786805, + 0.08375247, + 0.362982, + -0.13841888, + -0.21661617, + -0.12944639, + -0.07455134, + 0.4329432, + 0.6960533, + 0.11317302, + -0.47606328, + -0.34480238, + -0.11743902, + 0.06561324, + -0.24902883, + -0.263526, + -0.16591564, + 0.10634727, + -0.36515898, + 0.59453, + 0.26682156, + -0.44071135, + -0.33577332, + -0.54799795, + -0.81322294, + 0.31515417, + 0.3367385, + -1.0220196, + -0.18496904, + 0.32803234, + 0.07072943, + -0.11288872, + -0.08773932, + -0.08173081, + -0.0041821897, + -0.5499432, + 0.057852607, + -0.16397308, + -0.3392973, + -0.047899965, + -0.1831305, + -0.36757338, + 0.5082931, + 1.0092833, + -0.069505915, + -0.5373528, + -0.08853425, + 0.06312153, + 0.14365284, + 0.0018650293, + -0.32686663, + 0.5759413, + -0.0232716, + 0.52276087, + -0.15583178, + 0.021918599, + -0.032124113, + -0.33574587, + 0.7108636, + -0.14888681, + -0.27793297, + -0.025597699, + 0.13535154, + -0.42310512, + 0.92717415, + -0.15764259, + 0.015786305, + -0.19864425, + -0.33900538, + -0.01910176, + 1.2565368, + 0.09994322, + 0.17841277, + 0.25369722, + -0.38435364, + -0.4331228, + 0.096422784, + -0.63850373, + 0.040119693, + 0.2985774, + -0.7379221, + 0.8233832, + -0.5172792, + 0.09460115, + -0.082642764, + -0.34699833, + 0.5488008, + -0.7037103, + -0.06985402, + 0.16636534, + 0.07100085, + 0.25124714, + 0.55461556, + -0.6025093, + 0.1544475, + 1.4296623, + 0.38280192, + 0.56109416, + -0.1569759, + -1.0526493, + -0.1956172, + -0.065698095, + -0.2053572, + 0.3562391, + 0.10989542, + -0.8900804, + 0.34709498, + 0.27340043, + 0.4415491, + 0.08358292, + 0.25424692, + -0.13379778, + -0.35426974, + -0.30256286, + 0.032668114, + 0.5082203, + 0.02812887, + -0.3071652, + 0.063991785, + 0.17218249, + -0.47402617, + -0.057911016, + -0.5032744, + -0.19577391, + 0.25594643, + 0.78161234, + -0.57277024, + 0.4957783, + -0.62124777, + -0.056555763, + -0.45000297, + -0.041015446, + -0.63336474, + -0.58979213, + -0.13169385, + 0.5046419, + -0.08906469, + 0.1292684, + 2.1553268, + 0.23702106, + -0.26012436, + 0.5266542, + -0.92762697, + 0.081121325, + 0.3112158, + 0.49196786, + -0.21114066, + 0.1712138, + 0.6059452, + 0.5689461, + 0.21232854, + 0.40005803, + -0.21869272, + 0.3044842, + 0.6036727, + 0.15486586, + -0.031072348, + -0.027419945, + -0.3103751, + 0.11346748, + 0.21840164, + 0.38779572, + 0.19044499, + 0.78140193, + 0.4721806, + -0.3588211, + 0.4446696, + 0.22362576, + 0.17724463, + 0.27984062, + 0.2655363, + -0.30295593, + 0.503076, + 0.9708333, + -0.5498646, + -0.06719675, + -0.047975294, + 0.09692265, + -0.19791022, + -1.664608, + -0.051339425, + -0.395117, + 0.4672518, + 0.6007831, + 0.048470482, + -0.06670498, + 0.32272848, + -0.5478183, + -0.45952094, + 0.1785539, + -0.435481, + -0.11700179, + 0.2542149, + 0.28302372, + -0.21971281, + -0.56057495, + -0.067988865, + 0.07209492, + -0.43796754, + 0.69364095, + -0.03419109, + -0.32897967, + 0.24406835, + 1.4633555, + 0.13702899, + -0.40490162, + -0.18128628, + -0.2714742, + -0.261569, + 0.2188533, + -0.112986594, + -0.10458878, + 0.30360997, + 0.75920385, + 0.9779809, + 0.046856314, + 0.12117962, + 0.33058378, + -0.06816444, + -0.18087262, + 0.22588527, + -0.28575802, + 0.09854579, + 0.11998903, + -0.3189659, + -0.40638635, + 0.5108794, + -0.4048246, + -0.038192097, + 0.023255859, + 0.07157618, + 0.020302482, + -0.37528142, + 0.38772783, + -0.22072491, + 0.120173365, + -0.22445327, + -0.6060664, + -0.037919827, + -0.5414063, + 0.14185154, + 0.5692578, + 0.07673928, + 0.030849218, + -0.037728503, + 0.25018346, + 0.26364225, + -0.7442907, + 0.80370903, + 0.19561073, + -1.1233368, + 0.42366606, + 0.00436417, + -0.2125794, + 0.28397232, + -0.50090516, + 0.018174589, + -0.24060324, + -0.33919415, + 0.5744813, + -0.35763526, + 0.27832687, + 0.09550676, + -0.39867443, + 0.18787715, + 0.38680753, + -0.39256176, + 0.47368515, + 0.2651555, + 0.50024325, + 0.47845644, + -0.57202333, + 0.01502268, + -0.27855864, + -0.3904301, + 0.20800115, + -0.05547456, + -0.35504693, + 0.47465664, + 0.051423047, + 0.22423112, + -0.51701504, + -0.54719806, + -0.80372745, + 0.30420026, + 0.47508997, + -0.13135009, + 0.27519798, + -0.30103204, + -0.29405135, + 0.033511516, + 0.30766115, + -0.25215417, + 0.77452886, + -0.44458574, + 0.44902748, + -0.93894863, + -0.13324946, + 0.09367509, + -0.26967332, + -0.4578543, + 0.44675896, + -0.5685128, + 0.8342213, + -0.51742995, + -0.2668445, + 0.10530737, + 0.29412097, + -0.18913192, + -0.06956157, + 0.18227157, + -0.30085665, + 0.10278027, + -0.19309902, + 0.1366126, + -0.39647478, + -0.18081383, + -0.65096205, + -0.41518062, + -0.62682647, + -0.4953742, + 0.33683395, + -0.47781068, + -0.09274109, + 0.2796102, + -0.07197381, + 0.24611248, + 0.36837003, + 0.7446424, + -0.31939965, + -0.11256243, + 0.10923369, + -1.0412554, + 0.11077647, + 0.21309392, + -0.0085755065, + 0.1267107, + 0.17260385, + 0.12483156, + -0.012027834, + 0.26472706, + 0.051404744, + 0.3625214, + 0.012938342, + -0.47123852, + 1.0303146, + 0.02618438, + 0.6103415, + -0.2843116, + -0.32966346, + -0.46627378, + 0.02437026, + 0.037758417, + 0.34482664, + -0.36490628, + -0.8226116, + -0.0724474, + -0.4866066, + 0.11817148, + 0.051363036, + -0.16919295, + 0.03030324, + -0.568912, + -0.01975871, + -0.21577048, + -0.1331334, + 0.2165487, + 0.3403986, + -0.09312197, + 0.076334424, + 0.10681524, + -0.46769077, + -0.25540632, + 0.15901384, + -0.16125324, + 0.28578055, + 0.62163144, + 0.18960841, + 0.8107261, + -0.5143774, + 0.81812763, + 0.7650651, + 0.42127204, + 0.6575445, + 0.47998342, + 0.2743843, + 0.43253538, + 0.6544301, + 0.12695383, + -0.45832294, + -0.06709314, + 0.6167051, + -0.36743504, + -0.68379736, + 0.09057343, + 0.6899544, + -0.21988228, + -0.3557532, + 0.55238897, + 0.17044346, + -0.2554361, + 0.19934371, + 0.05479428, + -0.2739699, + -0.65206546, + -0.27680278, + 0.040897496, + -0.09710335, + -0.21113653, + 0.31413305, + 0.09613145, + -0.44100994, + -0.0982642, + -0.7267852, + 0.02138652, + 0.45496988, + 0.4696022, + -0.45626327, + 0.5311036, + 0.19610634, + -0.1790887, + 0.6289532, + -0.66666067, + 0.098029405, + 0.25798798, + 0.18566276, + 0.18067898, + 0.48063278, + -0.29033637, + 0.42005774, + -0.23575892, + -0.14300624, + 0.28512597, + -0.17169578, + -0.22664559, + -0.096466675, + 0.08293639, + 0.114223026, + 0.040937997, + -0.13944839, + 0.028058827, + 0.18075873, + 0.38029775, + -0.06534709, + -0.19674239, + -0.49668238, + 0.0021864846, + 0.15187876, + -0.2532757, + -0.07121429, + -0.19239923, + 0.4615894, + -0.73012424, + -0.21275237, + -1.8788924, + 0.13694426, + -0.13457885, + 0.19289565, + 0.50626856, + -0.8688476, + -0.16576374, + 0.10830864, + 0.68418396, + -0.13803656, + -0.16290934, + -0.048436668, + 0.19109847, + 0.20475352, + -0.6698638, + 0.043499008, + 0.20145816, + -0.4793836, + -0.016052734, + -0.08992885, + -0.33487275, + -0.7077406, + -0.29077178, + 0.049007088, + -0.07620807, + 0.066431485, + 0.048599184, + 0.017111782, + 0.0066378564, + 0.51924515, + -0.32098293, + -0.16257234, + -0.23909533, + -0.13302764, + 0.93945223, + 0.20202827, + 0.59287477, + 0.55180526, + -0.047503226, + 0.3906824, + -0.40674317, + -0.41356272, + -0.070334405, + -0.37313867, + -0.060034264, + 0.29684395, + -0.0134943435, + 0.014348581, + 0.1759775, + 0.1857416, + -0.13593936, + 0.8016995, + -0.6079686, + 0.282869, + 0.4070179, + 0.06317889, + 0.44061947, + 0.12674621, + -0.67702305, + -0.38011664, + 0.19209237, + -0.66350895, + -0.018571535, + -0.969312, + -0.0936658, + -0.5442368, + 0.41938856, + -0.2256737, + -0.14592291, + 0.14769721, + -0.12424295, + -0.016226757, + -0.02576118, + 0.8757368, + 0.4232831, + -0.6099684, + -0.103083536, + 0.123489946, + 0.2627551, + 0.24460365, + 0.010998733, + 0.5341248, + -0.5947963, + 0.1303033, + 0.012045994, + -0.10746814, + 0.11897041, + 0.44514278, + 0.28130507, + -0.32058364, + -0.35568324, + 0.13455322, + -0.3535945, + 0.40487087, + 0.08551611, + 0.4098884, + -0.060237605, + -0.69820213, + -0.48031527, + 0.0376921, + -0.660782, + -0.4235474, + 0.01945296, + -0.3610309, + -0.076196775, + 0.47501814, + 0.3063506, + -1.1699272, + 0.19746575, + 0.018123813, + 0.03325878, + -0.11707055, + -0.39922118, + 0.16296631, + -0.21583724, + 0.16677319, + -0.43725622, + 0.25584084, + 0.38572446, + -0.056735516, + -0.10477203, + 0.22752695, + -0.06975598, + 0.5049642, + 0.7961814, + 0.5127146, + 0.018459179, + -0.31533337, + 0.3865741, + -0.70081115, + -0.12138138, + 0.1377339, + 0.1365265, + 0.119443975, + 0.44541004, + 0.41672847, + -0.3705336, + 0.3039223, + -0.20031579, + 0.2222531, + -0.25085396, + -0.17673162, + 0.49711108, + 0.36748782, + 0.5205139, + -0.3771765, + 0.22138497, + -0.1128993, + 0.5939029, + -0.077726915, + -0.33103096, + -0.4247012, + -0.521761, + -0.13164029, + -0.34121335, + -0.4830091, + 0.11629037, + -0.017107125, + 0.12440865, + -0.568151, + -0.13417628, + -0.61406404, + -0.4599327, + -0.47817522, + -0.3716455, + -0.49276406, + 0.3967509, + -0.21309586, + -0.0001974851, + -0.609071, + 1.172331, + -0.97265756, + -0.5552374, + -0.5196522, + 0.15514098, + 0.14102757, + 0.19890344, + -0.10629617, + 0.18239617, + -0.05537613, + 0.1844385, + 0.29076904, + -0.14133336, + -0.5148703, + -0.626047, + -0.5758826, + 0.34436134, + 0.1258479, + 0.2628954, + -0.28017876, + 0.042504143, + 0.31540406, + -0.12604287, + -0.014457114, + -0.4388585, + -0.14278457, + 0.19271013, + -0.62230456, + 0.2818122, + 0.035942875, + -0.31973797, + -0.9011406, + 0.5107101, + 0.57160425, + 0.13415103, + 0.2306971, + -0.124909416, + 0.15016478, + -0.19610998, + 0.5283348, + -0.13264793, + -0.78082734, + 0.33378494, + 0.12520061, + 0.8308328, + -0.19103163, + -0.14072247, + 0.05196784, + 0.07961905, + 0.5534813, + -0.14322229, + -0.5950957, + -0.1267252, + 0.3737189, + 0.4108296, + -0.3880235, + 0.51617235, + -0.30123287, + 0.5536268, + 0.5271828, + -0.010657262, + 0.6911642, + 0.19422467, + -0.017281413, + 0.37934303, + -0.100561745, + -0.8233313, + 0.34915647, + 0.4901526, + -0.4109829, + 0.5529898, + 0.4889676, + -0.1472669, + -0.16998374, + 0.16276987, + -0.30843985, + -0.1143288, + -0.5181367, + 1.1649908, + 0.68992865, + -0.7083719, + -0.10262042, + -0.31914032, + 0.43713453, + -0.12107596, + -0.53911775, + -0.049951047, + 0.8191159, + -0.26705822, + -0.48776352, + 0.51252335, + -0.5490968, + -0.16523175, + -0.23624249, + -0.011048265, + 0.19475807, + -0.8368096, + 0.5561679, + 0.17112166, + -0.20051135, + 0.33573347, + 0.0073874146, + -0.11300807, + 0.22448577, + -0.03947734, + -0.102940656, + 0.4418231, + -0.6030626, + 0.07880368, + 0.8267931, + -0.84075856, + 0.09035016, + -0.55735904, + -0.2289741, + -0.05208374, + 0.6016315, + 0.46777946, + 0.06573491, + -0.24746338, + 0.5695858, + 0.31712368, + -0.2541853, + 0.22891352, + 0.059899885, + -0.100197986, + 0.15260759, + 0.2790533, + -0.39130867, + -0.5167227, + -0.22645025, + 0.37713656, + 0.3884998, + -0.064931415, + -0.0489881, + -0.0912404, + 0.07069782, + -0.18667099, + -0.21917915, + 0.19175644, + 0.06901742, + 0.3407635, + -0.003134653, + 1.2749856, + -0.050991546, + 0.3513377, + -0.2521053, + 0.6453947, + -0.3655633, + -0.41025954, + 0.4061091, + 0.40235943, + 0.5396743 + ], + "2025-05-20T05:32:17.013105", + "2025-05-20T05:32:17.013105", + 89.4516601562, + 7.6296286583, + 70.2842178345, + "2", + "ID: 14594744
Cluster: 2
Chunk: A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner ..." + ], + [ + 11702, + "prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.\n\nx2 + y2 \u2013 1 = 0,\nx \u2013 sin(t) = 0,\ny \u2013 sin(2t + \u03c0\/4) = 0\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-Algorithmus.\n\nz.B. nur f\u00fcr x>0, da symmetrisch:\n(x ,y , t ) = [0.7, 0.75, arcsin(0.7) ]\n0 0 0\n[0.25, 1, arcsin(0.25) ]\n[1, -0.25, arcsin(1) ]\n[0.7, -0.75, arcsin(0.7) ]\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3 Design-\nVariablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit den Startwerten\nvon (b)\nHier reicht es alle Schnittpunkte mit x > 0 zu bestimmen, da beide Kurven achsensymmetrisch sind.\n\nStartwert [0.7, 0.75, arcsin(0.7) ] \uf0e0 L\u00f6sung [0.70674446 0.7078306 0.78488616]\nStartwert [0.25, 1, arcsin(0.25) ] \uf0e0 L\u00f6sung [0.26014633 0.96664301 0.2631811 ]\nStartwert [1, -0.25, arcsin(1) ] \uf0e0 L\u00f6sung [1, -0.25, arcsin(1) ]\nStartwert [0.6, -0.85, np.arcsin(0.6)] \uf0e0 L\u00f6sung [0.70732644 0.70666723 0.78570889], hier musste\nder Startwert noch variiert\/probiert werden, bis die Konvergenz auf den gesuchten Schnittpunkt erreicht\nwurde.\n\n51\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung.\n\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems.\n\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus.\n\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\nL\u00f6sung (-0.5; 0.25)\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .", + 18240, + 9006747, + null, + "md", + null, + [ + 0.3179646, + -0.103203535, + -0.03015862, + -0.33203667, + 0.21279645, + 0.25659063, + 0.264594, + 0.5064091, + -0.5108686, + 0.1827112, + -0.2057376, + 0.41959545, + 0.16683517, + 0.05212103, + 0.4227515, + 0.40559927, + 0.49333963, + -0.033038758, + 0.5204243, + -0.29663774, + -0.56361336, + 0.06465066, + 0.3913966, + 0.48964748, + -0.6096554, + 0.39608756, + -0.13872966, + 0.1466504, + 0.10674975, + 1.1831636, + -0.17645934, + -0.07092726, + -0.3881887, + -0.3163711, + -0.27526757, + -0.6076026, + 0.8258395, + 0.20650324, + -0.659403, + -0.299567, + -0.42918032, + 1.034678, + 0.58659273, + -0.05486596, + -0.8073823, + 0.42847615, + 0.059895966, + -0.8434884, + -0.012350749, + -0.9390505, + -0.5265102, + 0.49774885, + 0.21056643, + 0.4486518, + 1.0570403, + -0.31846648, + -1.1891799, + 0.20063733, + 0.29752445, + -0.23782356, + -0.029075136, + 0.1304894, + 0.029878959, + 0.28391412, + 0.36735412, + -0.4083468, + 0.98556453, + 0.11212183, + 1.3803494, + -0.33012542, + -1.0097363, + 1.0618006, + 0.74522233, + -0.47806334, + -0.35564494, + 0.8881023, + 0.5328013, + 0.16532242, + 0.09286481, + 0.38159826, + 0.22184847, + -0.42269397, + -0.65226895, + -0.57150114, + -0.14183772, + -0.29612067, + 0.21912804, + 0.99256325, + -0.68894416, + -0.3783333, + -0.67143995, + 0.241732, + 0.0910079, + -0.003905559, + -0.062509365, + -0.9355172, + 0.246611, + -0.7060341, + 0.17382374, + 0.40318158, + -0.3884492, + 0.8578195, + 0.48120752, + -0.33331436, + -0.3087037, + -0.30196667, + -0.09375683, + 0.700844, + -0.34690237, + 0.20593575, + 0.7350019, + -0.2744343, + -0.63781977, + -0.2781452, + -0.33611503, + -0.8714574, + -0.26948762, + 0.5923756, + -0.022124298, + 0.64965963, + -0.65460634, + 0.5799716, + 0.30378082, + 0.09496207, + 0.2005457, + 0.2637317, + 0.4786765, + 0.34106645, + 0.7779038, + -0.28749013, + 0.4967352, + -0.12119448, + -0.45425233, + -0.2763047, + 0.13343339, + 0.21064195, + -0.16060331, + -0.04723143, + -0.37736693, + -0.41682112, + 0.0013151169, + -1.0787084, + -0.15283218, + -0.77552617, + 1.1649085, + 0.26213062, + -0.10206656, + -0.3481243, + 0.022040572, + -0.0014186613, + -0.5297382, + 0.04701516, + 0.26367578, + 0.20073523, + -0.26572463, + 0.25030568, + 0.09952585, + 0.24828044, + 0.26485074, + -0.39937988, + 0.5686809, + 0.12064321, + 0.16056605, + -0.46170872, + 0.8905975, + -0.26644367, + -1.090288, + 0.35777533, + 0.47124922, + -0.5568535, + 0.068260625, + -0.42058724, + -0.45270944, + 0.47526357, + -0.47125173, + 0.3821553, + 0.17854322, + 0.10391203, + -0.3122939, + -0.33499587, + 0.6497647, + 0.12115388, + -0.36106363, + -0.81619304, + 0.5968232, + -0.06543198, + 0.7112051, + -0.11774708, + 0.23259439, + 0.31871048, + 0.14806409, + 0.20857567, + 0.6626608, + -0.27898014, + 0.19106042, + 0.29249823, + -0.38687858, + -0.022606177, + -0.27145344, + -0.013560202, + 0.18952073, + 0.12144117, + -0.044424, + -0.3487328, + -0.15383571, + -0.2964693, + -0.32467073, + 0.23808849, + -0.42140925, + 0.25050563, + 0.55444705, + -0.4339773, + -0.45882767, + 0.47328132, + 0.17985092, + 0.5771203, + 0.039823387, + -0.78794384, + -0.47582692, + 1.0969408, + 0.3912246, + -0.3394388, + 0.35843316, + -0.12538925, + 0.40949932, + 0.36337683, + 0.1231149, + 0.49759576, + -0.03165455, + -0.23518555, + -0.7567927, + -0.0017741285, + -0.2637051, + -0.6172975, + -0.37138402, + -0.23855875, + -0.124398276, + 0.5134386, + 0.020063302, + -0.28884807, + 1.3712112, + -0.04976902, + -0.33117688, + 0.02930113, + 1.3072406, + 0.022287423, + -1.1908557, + 0.38531473, + -0.23009203, + 0.15636864, + 0.23339988, + -0.23249346, + -0.6087692, + 0.21010998, + 1.297247, + -0.16497652, + 0.012391259, + 0.009655807, + 0.13246092, + 0.36038598, + -0.25973785, + -0.35484746, + -0.38913283, + -0.0062422156, + -0.8542563, + 0.29494977, + 0.112311654, + 0.48722833, + 0.4665359, + -0.3835098, + 0.51445, + -0.028277062, + -0.36348417, + 0.61028486, + -0.24931172, + 0.57688046, + -0.23655275, + 0.7076859, + 0.56621677, + -0.7501217, + 0.23353426, + -0.3419531, + 0.15671787, + -0.32813695, + -0.102636784, + 0.71063894, + -1.0974811, + 0.08048005, + 0.5556505, + -0.5370333, + -0.12106757, + -0.5666193, + 1.4743439, + -0.081616305, + -0.6485317, + 0.116181806, + -0.7739463, + 0.07550931, + -0.6740064, + -0.5236249, + 0.41579852, + -0.3183279, + -0.43345645, + 0.11420259, + -0.32249475, + -0.050178535, + -0.09199941, + -0.26114702, + -1.365145, + -0.005558504, + -0.6385124, + -0.578983, + 1.0255724, + -0.2156635, + 0.19190365, + -0.2769707, + 0.3146405, + -1.0503782, + -0.19056909, + 0.35829684, + 0.8140154, + -0.2086799, + -0.18071207, + 0.26598462, + -0.064783245, + 0.19276954, + 0.2718251, + -0.33522215, + -0.09172768, + 0.52675635, + -0.8098238, + -0.54116803, + 0.25861534, + 0.60239285, + -0.4315255, + 0.24963489, + -0.6406656, + 0.7292226, + -0.6255161, + 0.4357397, + -0.43209037, + -0.039514437, + 0.35857353, + 0.7896368, + -0.6932665, + -1.0898719, + 0.5042019, + -0.52351695, + 0.73398495, + -0.058132306, + 0.8052545, + 0.16831118, + -0.8797989, + 0.015593909, + 0.2055605, + 0.11255176, + 0.53884244, + -0.024151467, + 0.07915458, + 0.1477757, + 0.035457566, + -0.5403893, + 0.071278855, + -0.05883587, + -0.55295, + 0.008974977, + -0.11543683, + 1.3483471, + -0.7058789, + -0.03482712, + 0.03875401, + 0.04321973, + 0.053749062, + -1.1251963, + -0.119662166, + -0.85628474, + -0.31397253, + -0.68580264, + 0.11569043, + 0.61530775, + -0.6324934, + -0.5979457, + -0.16618313, + -0.10302602, + -0.60011697, + -0.65335536, + 2.2805245, + -0.26942825, + 0.8736844, + 0.064001344, + -0.48391694, + -0.02215404, + -0.28375655, + 0.47275215, + -1.3100657, + 0.09487824, + -0.1540473, + -0.1786088, + 0.7666711, + -0.07021061, + -0.2967147, + 0.4737062, + 0.17666961, + 0.39956897, + -0.24559094, + 0.682262, + -0.05535302, + -0.025606006, + 0.12066747, + 0.5311623, + 0.5673748, + 0.3572922, + -0.067543544, + -0.43317324, + 0.39779204, + -0.6376087, + 0.43887135, + -0.06466002, + -0.06297163, + 0.66705, + 0.04713373, + 0.93229157, + -0.22434928, + -0.5482013, + 0.20611274, + -0.118103564, + 0.49557516, + -0.18139958, + 0.35113364, + 0.11865379, + 0.51240504, + -0.6445605, + 0.4402714, + 0.16231334, + -0.21681719, + -0.24679574, + 0.0065548196, + -0.036066525, + -0.6303757, + -1.5498528, + 0.27970043, + -0.78256774, + -0.35555935, + -1.3005219, + 0.06166306, + -0.2916041, + 0.50801545, + 1.0744617, + 0.41488403, + 0.78117543, + -0.32775888, + 0.25744647, + -0.20832494, + 0.38385865, + -1.0360343, + 0.7856589, + -0.33935744, + -0.30955422, + 0.6104281, + 0.76684904, + 0.18497123, + 0.44177458, + 0.21676141, + -0.23577617, + -0.38612807, + -0.53648335, + -0.28673565, + -0.12533933, + -0.5718161, + -0.49745345, + 0.09307541, + 0.19101778, + 0.122034654, + -0.35468525, + 0.3468625, + -0.017231677, + 0.56455064, + 0.18270478, + 0.36557847, + 1.226125, + -0.43200317, + -0.3123635, + 0.5351712, + 0.17957105, + -0.099606976, + 0.7499286, + 0.82020366, + -0.0795578, + -0.226941, + 0.3567391, + -0.2259046, + -0.42008, + 0.04781284, + 0.52774453, + 0.88093764, + -0.06506628, + -0.8113955, + -0.12883946, + 0.8819187, + 0.89745456, + 0.06228158, + -0.78600454, + 0.12822285, + -0.09880047, + -0.12746984, + -0.5315075, + -0.231522, + -0.23135549, + -0.62991774, + 0.48748082, + 1.0023079, + 0.073702514, + 0.040346183, + 0.5862807, + 0.52398586, + 0.4861188, + 0.1721721, + -0.04072024, + 0.3549862, + -0.40317348, + -0.02951917, + 0.97357225, + -0.13453482, + 0.1689667, + 0.7754584, + -0.091631755, + -0.15747294, + -0.29863954, + 0.36682436, + 0.0066728294, + -0.47077885, + -0.2882183, + 0.08037635, + -0.72415924, + -0.30380076, + 0.310589, + -0.5356941, + 0.95568657, + -0.8017017, + -0.5559288, + 0.24698572, + 0.022249997, + 0.25928813, + -0.39828953, + -0.32568616, + -0.54128194, + 0.6852619, + 0.1445916, + -0.07527183, + -0.16780429, + -0.547034, + 0.59706795, + 0.6186024, + -0.07692017, + -0.0287631, + -0.32358855, + -0.08211478, + -0.083204895, + -0.17263949, + 0.15117969, + 0.608192, + -0.33741945, + 0.41032308, + -0.48596123, + 1.3126942, + -0.14117824, + -0.9462994, + -0.2534827, + 0.13726845, + -0.10096637, + -0.15770826, + 0.67544943, + -0.23844174, + 0.04910421, + -0.072647795, + -0.887709, + -0.33016372, + -0.031903103, + 0.19518289, + -0.10144632, + -0.62824845, + -0.11209639, + -0.02745635, + -0.31324166, + 0.2655987, + -0.086929776, + 0.24200217, + -0.97304773, + -0.04357164, + -0.3584577, + -0.11586818, + -0.28164983, + -1.1840141, + 0.21540655, + 0.17574319, + -0.34534484, + 0.1617531, + -0.5598222, + -0.2452085, + 0.16140741, + -0.41080138, + -0.32222012, + 0.03200359, + -0.49135184, + -0.5684677, + -0.90185505, + 0.26967022, + 0.56196576, + -0.11209853, + 0.2327277, + -0.18117191, + 0.2940191, + 0.5164878, + -0.17242557, + 0.10977529, + 0.060887974, + -0.078232095, + 0.7060599, + 0.48885465, + -1.3068123, + -0.35796496, + 0.20827678, + 0.14612392, + -0.35563132, + 1.1871852, + 0.27742037, + 0.17754018, + 0.2745219, + 0.65047604, + 0.13528365, + 0.0002168119, + -0.60352176, + -0.3901071, + -0.4815438, + 0.1892628, + -0.6246624, + -0.60937595, + -0.99289024, + 0.26781243, + 0.29689363, + 0.50128645, + 0.19925076, + 0.37187165, + 0.6156616, + -1.2260058, + 0.8190786, + 0.42233503, + 0.1264164, + -0.6630816, + 0.3427414, + -0.09521525, + 0.54052335, + -0.97958773, + -0.55477154, + 0.016809987, + 0.67670417, + 0.33431083, + 0.25518507, + 0.50097656, + -0.77782774, + -0.41374004, + -0.64041847, + -0.77154076, + 0.4074075, + 0.24232146, + 1.2260362, + 0.44215244, + -0.68388116, + 0.9677403, + -0.2669065, + -0.38606408, + 0.115285695, + 0.5568783, + -0.9808247, + 0.31515467, + 0.49426687, + 0.5402848, + 0.21924418, + 0.15334263, + -0.052357484, + 0.15337157, + -0.3278485, + -0.25846437, + -0.37101465, + -0.65097785, + 0.16944954, + -0.0015488118, + -0.45637187, + -0.97677743, + 0.31963325, + -0.31221384, + 0.23197512, + -0.69087017, + -0.59224117, + 0.6918758, + 0.3179198, + 0.055387188, + 0.7890175, + -1.1856422, + 0.7043253, + -0.19009817, + 0.54552674, + -0.18779051, + 0.90710205, + -0.50056267, + -0.8349579, + 0.20583802, + 0.2870361, + 0.2519976, + -0.66589755, + 0.124282375, + 0.35435632, + -0.47000822, + 0.13229026, + 0.26460597, + -0.100792654, + -0.39932036, + -0.09810575, + -0.22627285, + -0.35654783, + -0.19350061, + -0.1452652, + 0.12595765, + -0.5947708, + 0.03101572, + -0.523203, + 0.66362655, + 0.117537834, + 0.57657015, + -0.41302377, + -0.3932747, + 0.65216523, + 0.144657, + 0.31449473, + -0.12557416, + -0.78503686, + 0.30687666, + 0.30233848, + -0.47847667, + 0.29186136, + 0.543644, + -0.3495535, + 0.8736577, + -0.41167545, + -0.2259165, + -0.19873704, + 0.5585314, + -0.010376312, + 0.35106608, + 1.2410442, + -0.019262962, + -0.38912743, + 0.24180833, + 0.2461057, + 0.694913, + 0.04561298, + 0.46209463, + 0.10659326, + 0.23313323, + -0.49761343, + -0.7434121, + -0.12928715, + -0.7384819, + -0.8007435, + 0.29890174, + -0.90965974, + 0.11711198, + -0.02236507, + -0.476417, + -0.05973413, + -0.56339836, + -0.6529189, + -0.107363924, + 0.09931348, + 0.20704642, + 0.8873016, + -0.40292147, + -0.8594535, + 0.7187517, + -0.29139504, + 0.29953164, + 0.16235283, + -0.5468975, + 0.77724355, + -0.14892724, + -0.08074344, + 0.18070138, + 0.3522809, + 0.6412653, + -0.09592922, + -0.15358548, + -0.9975472, + -0.3090897, + 0.3767568, + 0.011570105, + 0.9239178, + -0.35992116, + -0.41825208, + -0.6147684, + -0.010710046, + 0.4541393, + -0.65657395, + -0.45886415, + -1.0839953, + -0.04637891, + -0.4446988, + 0.06691493, + -0.07193269, + 0.22899339, + 0.43784747, + -0.41034693, + 0.2598918, + -0.3318359, + -0.050114248, + 0.13831273, + 0.3970047, + 0.11372311, + -0.42512754, + -0.6346778, + -0.27388495, + 0.6020913, + -0.07446274, + -0.63867414, + 0.5722754, + -0.1798833, + -0.6319374, + 0.41297776, + 0.082904205, + 0.3042705, + -0.7483652, + 0.012291901, + 0.067568466, + 0.038615942, + -0.16468464, + 0.8277733, + -1.1031197, + 0.6517269, + 0.26826632, + -1.1953756, + -0.38717026, + -0.7489306, + 0.118099034, + 0.81632817, + 0.059993412, + 0.016315714, + 0.11144551, + -0.27993077, + -0.059355866, + -0.11051611, + -0.78951234, + -0.009395748, + 0.32249713, + 0.22671892, + -0.06860761, + -0.10996424, + 0.42432088, + -0.23529962, + 0.06109819, + 0.22412646, + 0.7106284, + 0.61305374, + 0.25996548, + 0.118355125, + -0.18939658, + 0.77194923, + -0.7481391, + -0.24462447, + 0.4912005, + -0.80482894, + -0.6711386, + -0.057118207, + 0.107364684, + 0.13967624, + -0.8033048, + 0.022480786, + -0.6756127, + -0.106953405, + 0.7683832, + 0.016400658, + -0.40793452, + 1.0159602, + 0.2284835, + -0.690624, + -0.6397171, + 0.45786136, + 0.14520982, + 0.13885698, + 0.20024082, + -0.09243501, + 0.9948861, + -0.45961666, + 0.06781551, + 0.58979774, + -0.304316, + -0.36438227, + 0.48808685, + -0.24383065, + -0.119916625, + 0.25262028, + -0.48482487, + -0.24130933, + 0.016952671, + 0.14700608, + -0.14967835, + 0.3475912, + 0.46034428, + -0.3626119, + 0.7132292, + 0.45547733, + 0.39658883, + 0.20629752, + 0.41274184, + 0.27197057, + 0.16509025, + 0.17670056, + 0.5178406, + -0.21935697, + 0.21842138, + -0.2710794, + 0.60031503, + 0.476497, + 0.27246734, + 0.35829365, + -0.8146932, + -0.49958944, + -0.5697277, + -0.5169735, + 0.26255387, + -0.46847337, + 0.5450765, + -0.36735708, + -0.4778977, + -0.31163576, + 0.21589628, + 0.116946444, + -0.10659495, + -0.17790103, + 0.06973756, + -0.90789807, + -0.18644339, + -0.010593556, + -0.012844044, + -0.28524238, + 0.27746853, + -0.45538363, + -0.056364805, + -0.22466937, + 0.34158593, + 0.3384039, + -0.5397978, + 0.27366617, + 0.4586963, + -0.35547325, + 0.57763946, + 0.1547179, + -0.86728007, + 0.27344233, + -0.5392305, + 0.12509203, + 0.13663076, + -0.46614972, + -0.3805331, + -0.15324268, + -0.38305783, + -0.15063962, + -0.059647035, + 0.2326165, + -0.10650018, + -0.0039651454, + 0.5398262, + 1.2550673, + 0.17140712, + 0.15471512, + 0.17832921, + -0.72719204, + -0.094155945, + 0.19315894, + -0.41575933, + -0.16952446, + -0.11600629, + -0.03419737, + -0.44515723, + -0.006330304, + 0.14522699, + 0.34305435, + -0.38617256, + -0.50974035, + 0.081011586, + -0.24193564, + -0.052198, + 0.28096294, + -0.35544664, + 0.14462799, + 0.05817336, + 0.5073191, + 0.21465582, + 1.0986232, + -0.025793368, + -1.052786, + 0.6898306, + 0.64347494, + -0.034119353, + 0.20878394, + -0.61910474, + 0.27643707, + -1.2383344, + 0.592768, + -0.5888715, + 0.5749514, + 0.59024644, + 0.2168188, + 0.06506534, + 0.73779243, + -0.290604, + 0.042115547, + 0.27325913, + 0.5592674, + 0.6684436, + 0.20334335, + 0.432467, + 0.22544955, + 0.7469736, + 0.031726286, + 0.35435492 + ], + "2025-05-20T05:32:27.646986", + "2025-05-20T05:32:27.646986", + -47.8755645752, + 122.5512313843, + -46.6768035889, + "7", + "ID: 9006747
Cluster: 7
Chunk: prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nic..." + ], + [ + 11704, + "ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\n\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\n\n\uf0e0 Tafel\nBeispiel:\n1.\n\nN=2, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1002 * 0.001 s = 105 s = 10 s\n2.N=4, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1004 * 0.001 s = 105 s = 1.2 Tage\n3.\n\nN=10, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 10010 * 0.001 s = 1017 s = 3.2 Mrd.\n\nJahre (zum Vergleich: Alter des Sonnensystems ca.\n\n13 Mrd.\n\nJ.)\n57.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nheisst auch Downhill-Simplex-Algorithmus. \u00ab\n\nL\u00f6st\u00bb das unrestringierte N-dimensionale reelwertige Optimierungsproblem:\nMin f(x), x in RN\nNelder, Mead (1965)\nBemerkungen:\n\uf0fc f(x) muss stetig sein.\n\n\uf0fc Verwendung in der Praxis f\u00fcr 2 \u2264 N \u2264 10.\n\nF\u00fcr N gr\u00f6sser 10 zu in-effizient.\n\n\uf0fc Vorteil: gradienten-frei\n67.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIdee des Downhill Simplex-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n97.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nf\nGegeben: Simplex S mit n+1 Ecken, x x\n1, \u2026 n+1\nf\nn+1\n1.\n\nWerte f aus und sortiere f(x ) < f(x )< \u2026 < f(x )\nf\n1 2 n+1 n\n2.\n\nBerechne Zentrum der n besten Punkte\n1 n\n\u2211\nx = x\ni\nn\ni=1\nf\n2\nf\n1\n3.\n\nF\u00fchre genau eine Operation\nReflection, Expansion, Contraction oder Shrink\ndurch7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nReflection Spiegele x an Schwerpunkt\nn+1\nf\nf\nn+1\nf\nn\nf\nr\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.", + 18240, + 4015301, + null, + "md", + null, + [ + -0.111103505, + 0.27513874, + -0.024644863, + 0.24044713, + -0.5872487, + 0.96111953, + 0.5122346, + -0.691302, + 0.4659692, + -0.34453544, + 0.18847531, + 0.4933645, + 0.34522104, + 0.5350193, + -0.28161824, + -0.20311373, + 0.117067285, + 0.32576823, + 0.8590197, + -1.1533606, + -0.5475748, + 0.09159811, + -0.13058528, + 0.8629452, + -0.4752931, + 1.0980564, + -0.7857408, + -0.7443192, + 0.06946849, + 0.14316306, + -0.3906342, + -0.31901464, + 0.43394494, + 0.14482668, + 0.700349, + -0.54046154, + 0.012027979, + -0.58589554, + -0.3636956, + 0.8074849, + -0.035246238, + 0.72193784, + 0.94637287, + -0.057660397, + -0.4818987, + -0.9459685, + 0.426641, + -0.24073225, + 0.03905911, + -0.36202306, + 0.29927018, + 0.088483244, + -0.08668699, + 0.055998337, + 0.42429233, + -0.3236404, + -1.1022325, + 0.25999793, + 1.0156186, + -0.66572064, + 0.79095066, + 0.85066855, + 0.18490672, + -0.22072513, + 0.1323617, + -0.16773237, + 0.36906183, + 0.19604814, + -0.06260884, + -0.3321613, + 0.10563393, + 0.51765144, + 0.7490975, + -0.59431475, + -0.47855702, + 0.10457966, + -0.48816273, + 0.22187151, + -0.8715787, + -0.3724749, + 0.4578017, + -0.7814159, + -0.9229843, + -0.59723794, + 0.0002293736, + 0.028854638, + 0.09282501, + 1.3887057, + 0.84512675, + -0.050068732, + -0.5564005, + 0.682424, + -0.08815394, + 0.26165316, + 0.25687027, + 0.12179883, + -0.99874926, + -0.103874505, + 0.72895336, + -0.91126186, + -0.9387794, + 1.1880856, + 0.50154924, + 0.013785372, + 1.0249671, + 0.36208433, + -0.10396211, + -0.0457477, + -0.4055858, + 0.5168971, + 1.5805696, + -0.8802564, + -0.14466336, + 0.6394254, + 0.22152507, + -0.2024416, + -0.21186781, + -0.03292136, + -0.39956343, + -0.12666447, + 0.07643421, + -0.036094476, + -0.054207478, + 0.5138226, + -0.089957446, + 0.48573306, + 0.36451548, + 0.09347132, + -0.044246733, + 0.12626766, + -0.4592264, + 0.25616217, + 0.33580655, + -0.08436628, + 0.2341425, + 0.07892809, + 0.43948466, + 0.07494567, + 1.0932099, + -0.75778556, + 0.008485034, + -0.42240974, + -0.10131782, + 0.13727348, + 0.43647254, + -0.87970406, + -0.22031127, + 0.1567729, + -0.23334907, + -0.09363353, + -0.4460211, + 0.9268179, + -0.28864062, + 0.47182885, + -0.23156954, + -0.08258574, + -0.2297994, + 0.6313963, + 0.13538572, + -0.20187603, + 0.56571424, + 0.7696759, + -0.79431266, + 0.4368948, + 0.11663019, + 0.31233326, + -0.7808127, + 0.65855443, + 0.33996543, + -1.0816233, + 0.37587687, + 0.17600775, + -0.027381213, + -0.8050063, + 0.075424366, + -0.0944002, + 0.46170932, + -1.4345493, + -0.17174888, + 0.11595002, + 0.11734462, + -0.08649758, + 0.042943537, + -0.4136205, + -0.34495184, + -0.112821415, + 0.012079194, + -0.9948861, + 0.1455456, + 0.3224971, + -0.838207, + -0.41613775, + 0.22038084, + 0.18594383, + 0.08062419, + 0.09912556, + 0.21418181, + -0.25426927, + -0.048820205, + -0.21197182, + 0.3159074, + -0.5884119, + -0.714033, + -1.2869436, + -0.6248693, + -0.5181365, + -0.47227705, + -0.35181612, + -0.2769961, + 0.3927185, + 0.355436, + -0.32014567, + 0.62374175, + -0.08132502, + -0.22721554, + 0.4471583, + -0.51848024, + 0.69487345, + 0.08193269, + -0.5959471, + 0.82512075, + 0.37399212, + -0.4122986, + 0.3709541, + 0.59104633, + -0.26228833, + -0.15789132, + 0.13319911, + -0.18717168, + -0.5580197, + -1.3270024, + -0.061014783, + 0.10295247, + -0.6488412, + -0.5247181, + 0.40249223, + 0.7034552, + 0.161921, + -0.4465979, + -0.25231922, + 1.0237045, + 0.76769423, + -0.039782755, + 0.1345142, + -0.110646114, + 0.808237, + 0.3578712, + -0.016908715, + 0.63694566, + -0.10237393, + 0.5100039, + -1.1320575, + -0.15405145, + 0.55621725, + 0.34114808, + 0.19462669, + -0.537485, + 0.007924255, + -0.27668393, + -0.48333675, + -0.18667546, + -0.030508062, + 0.5933113, + 0.03505519, + -0.23555303, + 1.0915833, + 0.655474, + 0.38349566, + 0.47142327, + 0.068409085, + -0.9420821, + -0.025948428, + 0.60271084, + 0.7015291, + -0.193768, + -0.6951846, + -0.41930506, + 0.051698502, + 0.43035975, + -0.89585525, + 0.5124298, + 0.36304015, + -0.011570685, + -0.7391132, + 0.08929592, + 0.4280096, + -0.23404665, + 0.79324025, + -0.10045307, + -0.57632047, + 0.32095897, + 0.71927845, + 0.3354652, + -0.021794502, + -0.5543609, + 0.5242351, + -0.03775347, + 0.07995963, + 0.012083363, + -0.23903735, + 0.2229585, + 1.0891969, + 0.495704, + -0.05498652, + -0.40807894, + 0.4144634, + 0.18687233, + -1.2180426, + -1.5505884, + 0.05171182, + -0.9760338, + -0.3037802, + 0.40043652, + -0.56378835, + -0.18162555, + 0.7487339, + 0.560404, + 0.11396188, + -0.7252657, + -0.31714815, + -0.43304414, + -0.081456356, + -0.06382024, + 0.02835361, + 0.06777045, + -0.070991576, + 0.5104266, + 0.7211153, + -0.9488608, + 0.21074845, + -0.47275192, + -0.11413671, + 0.38119623, + 0.34813884, + -0.29709485, + -0.4920573, + -0.042452518, + -0.4262495, + -0.55864996, + -0.17805405, + 0.55174017, + -0.06688657, + -0.12160823, + 0.61375433, + -0.18305051, + -0.50741416, + 0.17944479, + -0.51181185, + -0.053172447, + 0.17886919, + -0.01245746, + 0.0070878407, + 0.5851314, + -0.1356974, + -0.4999472, + -0.24755754, + 0.15359773, + 0.11994307, + 0.37006885, + -0.038463168, + -0.24159612, + 0.16281801, + -0.40004233, + -0.35415307, + 0.10222867, + -0.046205185, + -0.25784802, + 0.5614276, + -0.9645758, + -0.2809586, + 0.32078394, + -0.0749781, + 0.28580934, + 0.3338579, + -0.36147505, + -0.48729536, + -0.8086256, + 0.60817826, + 0.310529, + 0.4599108, + -0.07991015, + -0.702847, + 0.40568614, + -0.33161813, + -0.3716765, + 0.3647025, + 2.9748442, + -0.3952489, + 0.26261204, + 0.42334056, + -0.45267507, + 0.89111656, + 0.3661742, + 1.1172862, + 0.68772805, + 0.022004753, + -0.38454646, + 0.7646128, + 0.20917167, + 0.15355466, + -0.31120378, + 0.6396636, + 0.6201887, + -0.53555256, + -0.54368997, + -0.47423518, + -0.41210055, + -0.21904063, + 0.13756347, + -0.45177162, + -0.1152295, + 0.065203205, + 0.42022583, + 0.3145579, + 0.30657482, + 0.17632772, + -0.5554069, + 0.23075914, + 0.05452285, + -0.7468393, + -0.36198643, + 0.13968168, + -0.6627295, + 0.961686, + 0.8125547, + -0.9367206, + -0.70934045, + 0.050942384, + -0.32744753, + 0.33023253, + 0.20379153, + 0.3150789, + -0.22577809, + 0.09218831, + -0.80333424, + -0.2501386, + -0.067270204, + 0.26579538, + 0.15487751, + -0.21921924, + -0.48642048, + -0.32614827, + -0.36018318, + -0.016053572, + 0.027089199, + -0.28815073, + -0.8489457, + 1.0214415, + -0.46073967, + 0.74028146, + -0.2664925, + 0.066440955, + -0.58721673, + 0.3673155, + -0.39492494, + -0.27162844, + -0.35672665, + -0.85503256, + 0.05167231, + -0.6895161, + -0.24551593, + 0.6713097, + 0.24063185, + -0.5107864, + -0.046176463, + -0.95793366, + -0.3421333, + 0.08986901, + -0.11543996, + -0.4736241, + -0.38773024, + -0.14224201, + -0.86674744, + 0.5920319, + 0.23456553, + -0.52478987, + 0.33035666, + 0.1772874, + -0.56391424, + -0.60189813, + 0.97415394, + 0.32953393, + 0.3214268, + 0.08850762, + 0.39711213, + -0.3592718, + -0.13396376, + 0.38782662, + 0.4652648, + 0.7007868, + 0.042547155, + -1.1681812, + -0.24866045, + 0.7259105, + 0.3241511, + -0.41217786, + -0.32034034, + 0.46830353, + 1.1287615, + 0.28533265, + -0.36432672, + -0.31784132, + 0.22098413, + 0.24915783, + 0.09736562, + -0.37759212, + 0.19902971, + -0.22928101, + 0.28984165, + -0.0589881, + -0.4733395, + 0.46251458, + 0.0604925, + 0.5746146, + -0.53436404, + -0.025396012, + 0.18842962, + 0.41245246, + 0.16736762, + -0.26962253, + 0.4324962, + -0.011708945, + 0.016094461, + 0.12004466, + -0.6489511, + 0.34794846, + -0.41124472, + -0.06525555, + 1.3509516, + 0.62207395, + -0.77945566, + 0.19267808, + 0.14328575, + 0.030636221, + 0.3132994, + -0.013791084, + 0.022155397, + -0.31345662, + -0.45673, + 0.031116193, + 0.68300605, + 0.12988457, + -0.15736637, + 0.6000634, + 0.6133349, + -0.05278196, + 0.73255044, + -0.17993651, + 0.33283377, + 0.03373146, + -0.45094982, + 0.641531, + -0.3847131, + -0.43559074, + -0.31925493, + -0.41381937, + -0.5533699, + 0.096192464, + 0.77578247, + 0.12860928, + 0.44945496, + 0.09122195, + -0.09380193, + -0.3358431, + 0.26369882, + -0.65607053, + -0.89825696, + -0.650099, + 0.36242664, + 0.10415925, + 0.14594528, + 0.22300613, + 0.23180811, + -0.14569521, + 0.68448967, + 0.42268315, + 0.078757964, + 0.4448853, + 0.008709177, + 0.569099, + -0.50642884, + 0.14235762, + 0.2920045, + -0.51134986, + 0.6209765, + -0.24672975, + 0.066709794, + -1.0924749, + -0.5486658, + 0.29676545, + -0.3599721, + -0.15722497, + -0.9748293, + 0.50239354, + 0.015565846, + -0.027105467, + 0.015691485, + 0.28591728, + -0.92274284, + 0.48143965, + 0.28177106, + -0.2943125, + 0.15014766, + -0.61180305, + -0.039101087, + -0.17833117, + 0.75088453, + 0.22915001, + -0.2963603, + 0.10242849, + -0.49411133, + -0.1937643, + -0.4021331, + 0.020614218, + 0.63140815, + -0.43305993, + 0.011864632, + -0.87174606, + 0.484873, + -0.23944262, + -0.3549228, + 0.5324907, + -0.30308655, + 0.46543452, + -0.22732528, + 0.35132167, + 0.008710377, + -0.3136759, + 0.43014777, + -0.051051095, + 0.76077664, + 0.62521917, + 0.16714628, + 0.48087987, + 0.2246818, + -0.7936071, + 0.0459653, + -0.7359303, + 0.78833586, + 0.049424574, + -0.21980047, + -0.3089095, + 0.13170977, + 0.038841054, + 0.41230497, + 0.36062887, + -0.1145585, + 0.16325636, + -0.12505728, + -0.1027599, + -0.48383874, + 0.3963212, + 0.17195342, + 0.09592244, + 0.3929707, + -0.39715186, + -0.12428647, + 0.17337751, + 0.119276695, + -0.4683249, + 0.15361972, + -0.5753589, + 0.34529248, + -0.097810045, + -0.6680436, + 0.66909486, + 0.10926712, + -0.97443503, + -0.342826, + 0.054116175, + -0.2759097, + -0.5174533, + 0.8924746, + -0.34894788, + 0.3947755, + -0.59445584, + -0.20176253, + -0.61728907, + -1.3091, + 0.2585612, + -0.73047286, + -0.5874695, + 0.074085504, + -0.3090415, + -0.6725921, + -1.0440544, + 0.2873598, + 0.08764071, + 0.3206541, + -0.44613323, + -0.20739298, + 0.10964403, + -0.697805, + -0.7796806, + -0.14790092, + -0.18104888, + -0.2291569, + 0.7097527, + 0.13551697, + 0.851728, + -0.13847868, + -0.07061918, + -0.4193964, + 0.95484537, + -0.21221814, + 0.011289155, + 0.1803058, + 0.28578898, + -0.80952036, + -0.21634088, + 0.90400267, + -0.17104661, + 0.23758747, + 0.46350628, + 0.5848975, + -0.21193385, + -0.15693156, + 0.026802719, + 0.19359723, + -0.040054247, + -0.42420766, + 0.39270288, + 1.307982, + -0.3987843, + 0.22856864, + -0.44749528, + -0.3881203, + -0.43358377, + -0.26132634, + -0.29939568, + -0.067048274, + -0.12927583, + -0.26515996, + -0.8381115, + 0.47909904, + -0.5386146, + 0.58183104, + 0.3897009, + 0.598483, + -0.07220416, + 0.33939022, + -0.25580555, + 0.19725116, + 0.016985238, + -0.1296375, + 0.14856109, + -0.44223762, + 0.611186, + -0.19788206, + 0.37489748, + 0.084126435, + -0.34518945, + -0.1374282, + -0.07375781, + 0.51201534, + 0.073045865, + -0.49421883, + 0.51000375, + 0.2737147, + 0.39289826, + -0.34019494, + -0.23481093, + 0.67178476, + -0.45534083, + 0.19094063, + -0.8995307, + 0.3843858, + 0.38688645, + 0.4037984, + -0.46339068, + -0.3825287, + -0.49469346, + 0.38527587, + 0.23637354, + -0.14438775, + 0.036242127, + -0.093154475, + 0.8836606, + -0.0637092, + -0.43310446, + 0.17801932, + 0.47701663, + 0.60717607, + 0.5189556, + -0.4514712, + 0.6009542, + -0.29310188, + -0.35960847, + -0.27920756, + 0.23385379, + -0.92356706, + -0.6466476, + 0.3324164, + -0.28032663, + -0.04019742, + -0.020887464, + -1.0292075, + -0.3835297, + -0.13331628, + -0.7088312, + 0.7208476, + -0.42078915, + -0.2493612, + -0.46179068, + -0.051152803, + -0.31644797, + -0.080282375, + -0.22929963, + -0.16281244, + -0.46866104, + -0.1321785, + 1.0024394, + -0.28339994, + -0.3735832, + 0.8519941, + 0.23260778, + -0.82505894, + -0.46541128, + 0.66474533, + -0.16400987, + 0.29997143, + -0.13171951, + -0.26965028, + 0.33354992, + -0.04265515, + 0.96792483, + 0.76995426, + -0.69729507, + 0.58111703, + 0.44939312, + -0.4704368, + 0.38059378, + -0.33354205, + 0.61085296, + 0.29436415, + 0.12305767, + 0.38652512, + -0.10922244, + 0.062766165, + 0.06799759, + 0.12592886, + -0.26188043, + -0.31828177, + 0.39112756, + -0.55186516, + -0.12180965, + -0.06802901, + 0.28951266, + 0.27036425, + -0.9669522, + 0.6625137, + 0.20368731, + -0.37509423, + -0.021149363, + -0.2971702, + 0.5526779, + 0.25374824, + 0.019802798, + -0.040675845, + 0.54867506, + 0.8655258, + -0.14293423, + 0.29068395, + 0.6769576, + -0.13677745, + 0.6236632, + -0.043670997, + -0.6485172, + -0.021546904, + -0.25874525, + -0.03280656, + -0.121491894, + 0.38293704, + 0.3779335, + -0.24313456, + -0.21501529, + 0.11329203, + 0.65238136, + -0.2856292, + 0.15647511, + -0.1809639, + -0.2797465, + -0.8547367, + -0.055287696, + 0.26669544, + -0.022467948, + 0.8581355, + 0.093276985, + 0.14246891, + 0.60269, + -0.104020976, + 0.11488925, + 0.032005064, + 0.020657439, + -0.60100466, + 0.03545648, + -0.28662422, + 0.23987952, + 0.24069323, + 0.16043596, + -0.68467116, + 0.63753927, + -0.75376314, + -1.1014379, + 0.3375987, + -0.013411105, + -0.31256872, + 0.29845965, + -0.48849514, + 1.0542948, + 0.1496247, + 0.39092487, + -0.5852823, + 0.7159354, + 0.08468971, + 0.20776066, + -0.57671046, + 0.2605152, + -0.12820251, + 0.8325643, + 0.773895, + 0.11866139, + 0.74138397, + -0.15446594, + 0.33087897, + -0.43027177, + -0.27942532, + 0.252689, + 0.34797257, + 0.5278196, + 0.4883642, + 0.031034244, + -0.007301796, + 0.3851166, + -1.0562998, + -0.23921312, + 1.04016, + -0.7367329, + 0.17804533, + -0.2892001, + 0.5493073, + -0.1645969, + 0.44890723, + 1.42288, + -0.09745307, + -0.13900265, + 0.008992406, + 0.18498786, + -0.016569696, + 0.08389994, + -0.14019741, + 0.1980698, + -0.40118137, + -0.09295742, + 0.17849806, + -0.26338124, + -0.1909554, + 0.84586924, + -0.28328428, + 0.18615334, + 0.04405523, + 0.13021876, + -0.3959357, + -0.88527656, + -0.92220426, + -0.34500936, + -0.21988879, + 0.2536168, + -0.148683, + -0.16075149, + 0.25405475, + 0.5630338, + -0.13210224, + 0.26050103, + 0.8977553, + 0.23955931, + -0.24413103, + 0.14234196, + -0.059094958, + -0.18468696, + -0.37251732, + 0.35191485, + -0.35825267, + 0.009886274, + 0.033352032, + 0.10113228, + 0.55047226, + 0.047114067, + 0.2880586, + -0.72169244, + 0.40345216, + -0.34424016, + -0.9128772, + 0.4157027, + 0.17844501, + -0.3075044, + 1.0709951, + 0.55589753, + -0.27527204, + -0.62813944, + 0.022546098, + -0.15256676, + -0.011338351, + -0.15673074, + -0.001514338, + -0.1812315, + -0.6439006, + 0.20228201, + 0.2671375, + -0.14226034, + -0.08620628, + -0.8838006, + 0.37091896, + -0.84899914, + -0.51137, + -1.3155996, + 0.2691452, + 0.32346132, + -0.48001495, + -0.3687028, + -0.13638173, + -0.2977149, + 0.09158025, + 0.111911945 + ], + "2025-05-20T05:32:38.046768", + "2025-05-20T05:32:38.046768", + 11.9254703522, + -15.3311862946, + -4.2079267502, + "6", + "ID: 4015301
Cluster: 6
Chunk: ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidista..." + ], + [ + 11706, + "die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\ngradf = (3x 2 \u2013 4, 2x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -1, 2 5\nn = 1 2,-1 8,-2 68\nn = 2 -6,1 104,2 10\u2019820\n(c) a=0.1: Iteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -0.1, 0.2 0.05\nn = 1 1.1,0.8 -0.037, 0.16 0.027\nn = 2 1.137,0,64 -0.01, 0.128 0.017\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1) .\n\n1,0 , 2,0\ngradf = (30x 2 \u2013 40, 20x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -10, 20 500\nn = 1 11, -19 3590,-380 13\u2019032\u2019500\nn = 2 -3579, 3611 384277190, 7220 1.5e17\n55", + 18240, + 8958903, + null, + "md", + null, + [ + 0.035227485, + 0.43120527, + 0.52239215, + -0.13663736, + -0.31758854, + 0.29873326, + -0.29649162, + -0.5112855, + -0.15712917, + -0.4734825, + 0.1259042, + 0.08540109, + 0.3401257, + -0.40163463, + 0.83632165, + 0.2960099, + -0.5661757, + 0.77227396, + 0.12360928, + -0.86863804, + -0.04766032, + -0.29687282, + 0.7867298, + 0.37844926, + -0.37913114, + -0.14191093, + -0.10414994, + -0.0042673647, + 0.09452772, + -0.01963433, + -0.2262731, + 0.41314828, + -0.5426892, + -0.82731766, + 0.31833154, + -0.056809902, + 1.0170922, + 0.16727799, + 0.12341689, + 1.1641692, + -0.5483145, + 0.5661739, + 0.44714043, + -0.09855313, + 0.9515027, + 0.2780046, + -0.33897194, + -0.8765168, + -0.16424131, + -0.44698256, + 0.18091345, + 0.5797814, + 0.4765207, + 0.23994556, + 0.5589339, + -0.8995157, + 0.42970592, + 0.19083676, + 0.30122584, + -0.0084908735, + 0.2271487, + 0.60508436, + -0.5885565, + 0.12091863, + 0.522537, + -0.2400003, + 0.2593043, + -0.28657794, + 0.2016936, + 0.1558629, + -1.0604045, + 0.2714879, + 0.658165, + 0.30373248, + -0.11965367, + 0.24967445, + 0.0023111403, + -0.21487568, + -0.720264, + 0.26807547, + -0.3657173, + 0.059623618, + -0.319422, + -0.28238973, + 0.25431567, + 0.37349644, + 0.16231835, + 0.20085457, + 0.36130702, + -0.4669555, + -0.011541992, + 0.2428661, + -0.13633785, + 0.3010863, + -0.54505575, + -0.6538167, + -0.5882407, + -0.5839243, + -0.48536655, + 0.18463476, + -0.27275962, + 0.4702417, + 0.39573306, + -0.21565984, + -0.48398867, + -0.3867579, + -0.07014859, + 0.39496505, + -0.11394868, + 0.9602792, + 1.525674, + -0.015809106, + 0.2727615, + 0.12185989, + 0.188926, + -0.45364374, + 0.30688545, + 0.22666086, + -0.3327866, + -0.54607743, + 1.1045344, + -1.63131, + 1.0533394, + -0.01845837, + 0.35336986, + 0.50757164, + 0.8207295, + -0.026832122, + 0.1515329, + 0.8613791, + 0.045546185, + 0.11808446, + 0.6049832, + -0.013299204, + -0.16695914, + -0.2041381, + 0.11554308, + 0.8998783, + -0.09762573, + -0.6887736, + -0.651439, + -0.7301151, + -0.08139841, + -0.24855262, + 0.4942112, + -0.5063123, + -0.33753967, + -0.19405794, + 0.12723875, + 0.21742342, + 0.20283914, + 0.21461979, + 0.63907933, + 0.7470671, + 0.31549773, + 0.6041687, + -0.12604114, + 0.46686167, + -0.36920264, + 0.20828255, + -0.71072066, + 0.37770894, + -0.43569168, + -0.4696259, + -0.0002884772, + 0.86632794, + -0.1098367, + -0.27356106, + 0.7677609, + -2.039423, + 0.7510078, + -0.10637742, + -0.70602727, + -0.5075672, + -0.33394322, + 0.4957729, + 0.36586857, + -0.23783559, + 0.15762946, + 0.15352885, + 0.5021717, + 0.90963167, + 0.42142627, + -0.38688138, + 0.35238108, + 0.2751043, + 0.10191421, + 0.0042552575, + 0.049110144, + 0.3200574, + -0.82587683, + -0.51401, + -0.21321319, + -0.056421444, + 0.4624979, + -0.76471865, + -0.19947533, + -0.057007495, + -0.40732443, + 0.110031664, + 0.7238411, + 0.15247838, + 0.49675307, + -0.5793193, + -0.11268348, + 0.3219213, + -0.052244537, + -0.283055, + 0.761901, + -0.24347527, + 0.85326636, + 0.103682384, + 0.7662685, + 0.45522246, + -0.402625, + 0.3245895, + 0.04530649, + 0.9966359, + -0.5977676, + -0.84382594, + -0.12858164, + 0.22183448, + 0.055392537, + -0.45959252, + -0.22699884, + 0.22088419, + -0.84075963, + 0.84792316, + 0.25188574, + 0.21962786, + -1.4087516, + -0.2749581, + -0.3968765, + -0.40764, + -0.572621, + 0.3130048, + 0.6636314, + 0.15228355, + -0.55669934, + 0.007022081, + 0.5633618, + -0.9288915, + 0.78622526, + -0.18130966, + 0.41737992, + -0.13846365, + -0.111729726, + 0.6047288, + 0.23378691, + 0.31664658, + 0.9489537, + -0.461172, + -0.27206695, + 0.45173162, + 0.48066688, + 0.10924919, + 0.35946625, + -0.3943067, + -0.7258749, + -0.12708573, + 0.020771712, + 0.2535193, + 0.16891477, + -0.13719198, + -0.032196134, + 0.16568378, + 0.16247398, + -0.0010640193, + -0.18431354, + -0.23212811, + 0.23384413, + 0.4116839, + 0.20506257, + 0.17645848, + -0.19683361, + 0.40574425, + -0.11653183, + -0.32934743, + 0.22995192, + -0.64957047, + 0.63135844, + -0.0354736, + -0.297599, + -0.19807786, + 0.41436026, + -0.0026962124, + -0.3644193, + 0.21282655, + 0.3815832, + -0.43197426, + -0.22535925, + -0.16352919, + 0.2260164, + -0.23978303, + 0.09813753, + -0.21887031, + 0.0124518275, + -0.02479434, + 0.36484334, + -0.30614692, + 0.47383517, + -0.074305594, + 0.64162344, + -0.48429582, + 0.23084599, + -0.17025676, + 0.3183928, + -0.27682674, + -0.032342233, + 0.2871809, + -0.12180154, + -0.22941951, + 0.07042329, + -0.5289044, + -0.06341804, + -0.39083895, + 0.10383343, + -0.16820128, + -0.06726672, + 0.7922198, + 0.27378166, + 0.7214276, + -0.0867618, + -0.51426053, + 0.07959388, + -0.054650407, + 0.4839524, + -0.6344546, + -0.37320217, + -0.05446639, + 0.09720878, + -0.026777014, + 0.6952187, + 0.02859007, + -0.013296358, + 0.2527567, + -0.51539916, + 0.4130947, + -0.32347235, + -0.12590106, + 0.34275198, + -0.085946225, + -0.24895418, + 0.5046025, + -0.10522412, + -0.03700988, + 0.7916052, + -0.39988512, + 0.13142252, + 0.23594326, + -0.39860323, + 0.2011841, + 0.40382236, + 0.030361295, + 0.46637934, + -0.056896657, + 0.5328057, + -0.12833251, + -0.0642562, + -0.09188379, + 0.03354928, + 0.09755744, + 0.39249888, + -0.3910788, + -0.4820851, + 0.17704615, + -0.07618969, + 0.4056756, + -0.4949583, + 0.41383332, + -0.20570967, + 0.09886987, + -0.16988349, + -0.17578858, + -0.62433785, + -0.14272404, + -0.23742738, + 0.7067068, + 0.08055101, + 0.028926035, + -0.22104391, + 0.087547965, + 0.4578066, + -0.16460729, + 0.14203726, + 0.066070706, + 0.19873983, + -0.97487146, + 0.1334939, + 0.49761176, + -0.5894046, + -0.12641427, + 0.28989482, + 0.048131824, + 0.3156877, + 0.20787624, + 0.3709583, + 0.14004359, + 0.40923533, + -0.30218974, + 0.23594126, + 0.1278511, + -0.017410731, + -0.44881472, + 0.27993459, + -0.25400424, + 0.104328275, + 0.35584453, + -0.06380194, + -0.008632638, + -0.13774987, + 0.22347255, + 0.34284416, + -0.15264308, + -0.20840122, + -0.62338597, + 0.28650114, + 0.45039725, + -0.12641169, + -0.07468858, + -0.046326824, + 0.4700452, + -0.39182103, + 0.17811665, + 0.3795021, + -0.59240544, + 0.5791213, + -0.045146726, + -0.4108375, + -0.30806798, + 0.55166745, + -0.25599554, + 0.12944798, + -0.6579468, + -0.060832016, + -0.51299536, + 0.7201315, + 0.40826234, + 0.31521404, + -0.39594027, + 0.030386046, + -0.3161918, + -0.104474425, + 0.012153486, + -0.21324696, + 0.16232114, + 0.041458905, + -0.34708932, + 0.3373382, + 0.62198997, + -0.32808605, + 0.09074414, + -0.17344186, + 0.41898903, + -0.47626483, + -0.6410973, + 0.3033397, + -0.586496, + -0.17162135, + -0.13217324, + -0.2674671, + -0.3099337, + -0.015676372, + 0.3224088, + 0.020955287, + -1.1030031, + -0.0868898, + 0.31348336, + 0.13870342, + -0.34074646, + 0.13996796, + 0.25612673, + 0.49375385, + -0.3231639, + 0.17083587, + -0.10337609, + -0.19430374, + -0.31546322, + -0.25721282, + 0.38520336, + -0.044453565, + 0.21529196, + 0.4947179, + 0.101060614, + -0.37935364, + 0.099106215, + 0.6867792, + 0.0025704876, + 0.20121782, + 0.96456885, + -0.1283732, + -1.1683611, + -0.11534264, + 0.40248346, + 0.053767018, + -0.41854605, + -0.3217911, + 0.36527118, + 0.10784527, + 0.20822115, + -0.12214999, + 0.08554269, + 0.3884391, + 0.23326212, + -0.18385376, + -0.1049612, + 0.20401052, + 0.04840838, + -0.42490232, + -0.3747599, + -0.65142345, + -0.49928412, + -0.07109903, + 0.091538586, + -0.010010146, + -0.2363716, + -0.48887315, + 0.28099373, + 0.07717447, + -0.11009285, + 0.80506605, + -0.12887149, + 0.46632123, + -0.06320484, + -0.07349111, + 0.12581712, + -0.50632465, + -0.7502715, + 0.72286767, + 0.66407174, + -0.32214713, + 0.3859881, + 0.43759218, + -0.42869404, + -0.44520253, + -0.037659194, + 0.24154726, + 0.08703357, + -0.45384103, + 0.38149554, + 0.07463053, + -0.041927394, + 0.013305166, + 0.26810476, + -0.8562882, + -0.2558826, + 0.06763456, + -0.28356755, + 0.16059378, + 0.04711604, + -0.22735846, + -0.8763924, + -0.052913904, + 0.10749309, + 0.32414764, + -0.06585851, + -0.25262934, + 0.18168901, + 0.0916653, + 0.040337734, + 0.05081083, + -0.25373924, + -0.04647749, + -0.9953149, + -0.07975103, + -0.50199294, + 0.43385863, + -0.0279468, + 0.06411155, + 0.10261443, + 0.03637725, + -0.66610026, + -0.708709, + 0.14549796, + 0.6292371, + 0.17535964, + 0.018937808, + 0.3016777, + 0.56049526, + -0.13939321, + -0.29889613, + -0.16259395, + 0.4676866, + -0.0076647326, + 0.20867099, + 0.5812738, + 0.24638982, + -0.34074664, + -0.516498, + 0.10343066, + 0.6827388, + -0.16262232, + -0.3601303, + -0.06537609, + 0.23276061, + 0.22300021, + 0.1624578, + 0.028339935, + -0.7799967, + 0.16542193, + -0.20398766, + 0.45729384, + -0.14371595, + 0.13227822, + -0.30483672, + -0.33329743, + 0.578063, + 0.43622142, + -0.03846567, + 0.13217428, + 0.071870655, + -0.20658496, + -0.10483428, + -0.6380193, + 0.2011417, + 0.26053575, + 0.03625028, + -0.4675262, + 0.39476883, + 0.014897877, + 0.13811682, + 0.43138757, + -0.2960908, + 0.18055347, + -0.032982454, + 0.23512948, + -0.32805216, + -0.13928756, + 0.6768971, + -0.072986275, + -0.09639254, + 0.33059004, + 0.29635146, + -0.023856357, + 0.2611434, + 0.37360448, + 0.018534344, + 0.14739662, + 0.52187234, + 0.18570372, + 0.28170028, + -0.052042663, + -0.17293404, + -0.30977768, + -0.03737603, + 0.4057302, + 0.5638813, + 0.21510433, + -0.18194678, + 0.16465731, + -0.22014868, + -0.32049236, + -0.4011475, + -0.4541289, + -0.0017518615, + -0.090146594, + 0.14004038, + 0.21848539, + -0.32724264, + -0.19425802, + -0.7267866, + -0.35283718, + 0.41814366, + 0.12426685, + 0.14658864, + -0.19503674, + -0.034824915, + -0.58092755, + -0.13017248, + -0.32866287, + 0.6277068, + -0.39306104, + 0.4697993, + -0.2470142, + 0.50767654, + -0.07310383, + 0.6671196, + 0.08656066, + -0.47994104, + -0.12072844, + 0.15912488, + -0.32437688, + -0.3463483, + -0.0067896172, + 0.13042772, + 0.11816736, + 0.022483014, + -0.072735876, + -0.07280396, + -0.20163044, + -0.65415305, + -0.1646264, + -0.21397498, + 0.23707938, + -0.15608177, + 0.109623075, + -0.34969735, + 0.1004206, + -0.33453608, + 0.23106638, + -0.21658666, + 0.15824467, + 0.38517153, + 0.063414834, + 0.05709734, + 0.107479624, + 0.20833333, + -0.13213298, + -0.5137263, + -0.95291, + -0.06912414, + -0.41868195, + -0.6520881, + 0.19743855, + -0.19321918, + -0.23971897, + -0.17536615, + 0.25063094, + -0.108771466, + -0.49420372, + -0.8019584, + 0.13576914, + -0.43574837, + -0.10416637, + -0.21026759, + -0.032561593, + 0.24116574, + -0.5091767, + -0.05749426, + -0.24203174, + 0.26416287, + -0.14884727, + 0.11166343, + 0.09139639, + 0.19042426, + -0.31835473, + 0.20356295, + -0.097481936, + -0.2594051, + 0.16354656, + 0.50466853, + 0.8873635, + 0.4801234, + 0.09321807, + -0.18272835, + -0.13771617, + 0.06615932, + -0.47643626, + -0.06752644, + 0.562797, + -0.25931978, + -0.054549776, + 0.24647458, + 0.2542115, + -0.02989177, + -0.2068162, + 0.2748734, + 0.53251004, + 0.09756206, + -0.04186126, + -0.70629615, + 0.19038881, + -0.15723485, + -0.9834419, + 0.62244105, + -0.7646929, + 0.013487862, + -0.24413529, + 0.32784876, + -0.16340125, + 0.21076083, + -0.34701565, + -0.47387967, + -0.10710363, + -0.0852028, + 0.5959022, + 0.18727405, + 0.34072825, + -0.6189017, + 0.25106782, + -0.20841098, + -0.357278, + 0.45501018, + 0.14525281, + -0.030844253, + 0.12794182, + 0.08988879, + -0.116732925, + 0.087557934, + -0.11673422, + 0.22156824, + -0.3411066, + 0.1886593, + 0.07077799, + -0.52785474, + 0.29572374, + 0.06697182, + 0.26801637, + -0.046941906, + -0.77313083, + 0.55185354, + 0.16097802, + 0.1694783, + -0.20930803, + -0.23466276, + -0.53802997, + -0.24319698, + -0.039958708, + -0.1355516, + -0.35911322, + -0.07189368, + -0.560884, + 0.20055085, + 0.51320946, + -0.80182654, + 0.11437595, + -0.29351422, + -0.087016106, + -0.028835885, + 0.09631376, + -0.06407458, + 0.57412136, + 0.05838732, + -0.37002742, + -0.102288365, + -0.35102665, + 0.28478613, + -0.1661081, + -0.03852102, + -0.0054151546, + -0.3677947, + 0.29021317, + -0.1891203, + 0.44183415, + -0.5599079, + 0.5155513, + 0.3318683, + 0.35919705, + -0.119113535, + 0.5035552, + -0.2723381, + 0.14963573, + 0.31347626, + -0.4097501, + -0.3347152, + 0.16897619, + -0.061472647, + 0.6784039, + 0.24478115, + -0.5999226, + 0.27093396, + 1.0283965, + -0.279835, + -0.076503694, + -0.6898769, + 0.2034721, + 0.41926962, + -0.13219967, + 0.5796306, + 0.30212379, + -0.2709058, + 0.27281472, + -0.040140647, + -0.6468353, + 0.56460154, + 0.033623666, + -0.14881152, + 0.12645854, + -0.20834754, + -0.30995488, + -0.001598984, + 0.16623907, + -0.08233867, + -0.34148374, + -0.08473674, + 0.019445524, + -0.26233083, + 0.4287861, + -0.46689406, + -0.30958176, + 0.28260994, + 0.08976661, + -0.11665891, + -0.2964736, + -0.14820407, + -0.1762419, + 0.5419525, + -0.630507, + -0.63939756, + 0.12463762, + 0.123888105, + -0.065095514, + -0.24493478, + -0.10248187, + -0.10433245, + -0.28702286, + -0.50444496, + -0.8259283, + -0.072356954, + -0.1903193, + -0.37907672, + 0.5384889, + -0.6086992, + 0.23767069, + 0.21664363, + 0.38258782, + -0.91976273, + -0.07425148, + 0.12536317, + 0.374138, + -0.012820087, + 0.6708946, + 0.07390079, + -0.30420235, + -0.13551344, + -0.08397073, + 0.11187801, + -0.091831826, + -0.30897006, + -0.3050888, + -0.055678137, + 0.15994307, + 0.36762, + 0.18604925, + 0.07813695, + -0.8905247, + 0.01977349, + -0.13105465, + -0.60167426, + 0.83331895, + 0.08074715, + -0.03922034, + 0.08714168, + 0.4353514, + -0.3627717, + 0.47894472, + 0.390081, + -0.16700861, + 0.049726896, + -0.23213573, + 0.55580294, + -0.14953846, + -0.06304112, + 0.7683089, + 0.43523318, + -0.5748272, + 0.14349, + 0.022570856, + -0.16107881, + -0.026785932, + 0.23980743, + 0.29334068, + -0.49580383, + 0.21463719, + 0.015602928, + -0.59442055, + 0.21942066, + -0.3592873, + 0.38194212, + -0.14315608, + 0.006316334, + -0.13606568, + 0.059023555, + -0.13350494, + -0.3473465, + 0.17897597, + -0.04271264, + -0.060129046, + 0.1470001, + 0.5280489, + 0.7916287, + 0.24326296, + -0.058014788, + -0.63561726, + 0.33414975, + -1.0738757, + -0.05935108, + -0.028371774, + 0.15531635, + 0.7251707, + -0.3813096, + -0.22769515, + -0.42002183, + -0.13887084, + 0.028182413, + -0.32896793, + 0.16953288, + 0.22536467, + -0.046354588, + -0.24269816, + 0.48906392, + -0.09965692, + 0.20276581, + 0.20606808, + 0.025765412, + 0.30582482, + 0.7153344, + 0.13747044, + -0.2871117, + -0.46894008, + 0.542788, + -0.27622065, + 0.13624878, + -0.32685846, + -0.23125267, + -0.111888714, + -0.21238515, + 0.060604446, + 0.05480578, + 0.03564173, + -0.42749816, + 0.35164633, + 0.098566554, + -0.036620628, + 0.2123527, + 0.5478809, + 0.4756705, + 0.1827656, + -0.05477235, + -0.46615583, + -0.49821058, + -0.44490203, + 0.37279472, + 0.55576897 + ], + "2025-05-20T05:33:02.379041", + "2025-05-20T05:33:02.379041", + 1.3950625658, + 74.5743331909, + 24.3858013153, + "4", + "ID: 8958903
Cluster: 4
Chunk: die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1..." + ], + [ + 11708, + "17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nShrinkage7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nKonstruktion des Start-Simplex\n\uf0fc oft automatisiert (x% Abweichungen von einem Startpunkt)\n\uf0fc Gr\u00f6sse des Start-Simplex bestimmt die initiale Schrittweite\nRestringierte Probleme\n\uf0fc 1-3 Gleichheits- oder Ungleichheits-Restriktionen mittels Straf-Funktionen in die Zielfunktion integrieren.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nAbbruchbedingungen7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nRosenbrock (Banana) Function\n2 2 2\n\ud835\udc53\ud835\udc53(\ud835\udc65\ud835\udc65, \ud835\udc66\ud835\udc66) = (1 \u2212 \ud835\udc65\ud835\udc65) + 100(\ud835\udc66\ud835\udc66 \u2212 \ud835\udc65\ud835\udc65 )7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex \u2013 Himmelblau Funktion7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-AlgorithmusIn Python \uf0e0 scipy.optimize.fmin\nscipy.optimize.fmin \u2014 SciPy v1.13.0 Manual\n\uf0e0 einfaches Bsp in der Vorlesung\n\uf0e0 \u00dcbung 7.2.1 u 7.2.2\n227.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nVorteile\n\uf0fe Sehr einfach anzuwenden\n\uf0fe Simplex passt sich der \u201elandscape\u201c der Funktion an\n\uf0fe Ausreichende Stabilit\u00e4t f\u00fcr die meisten Probleme mit N<5\n\uf0fe Effizienz in der Praxis gut genug f\u00fcr kleine N<5\n\uf0fe Zielfunktion muss nicht in analytisch geschlossener Form\nbekannt sein\n\uf0fe Ben\u00f6tigt keine stetig ableitbaren Zielfunktionen\n\uf0fe keine Ableitungen\n\uf0fe Findet lokale Minima\n\uf0fe Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.", + 18240, + 8952219, + null, + "md", + null, + [ + -0.76435846, + 0.1580934, + -0.073087715, + -0.29936278, + 0.10853522, + -0.093156494, + 0.2814383, + 0.5353781, + 0.51500803, + -0.0007352047, + -0.3806599, + -0.15644482, + 0.41168827, + 0.22463825, + 0.088270195, + 0.6871004, + -0.45986772, + 0.57305783, + -0.057528935, + -0.38707054, + -0.21620734, + 0.04908679, + -0.08922185, + 0.75113255, + -0.7191411, + 0.9498533, + -0.16435517, + -0.23787788, + 0.3800425, + 0.11354802, + -0.47542486, + -0.49541754, + 0.3207547, + 0.024558835, + 0.24160671, + -0.073839456, + -0.034452878, + -0.23755127, + -0.4881137, + 0.8118895, + -0.23739241, + -0.23232663, + 0.28792813, + -0.49988678, + 0.06464484, + 0.274544, + 0.06505476, + -0.86260456, + 0.056498833, + 0.27931142, + -0.1278758, + -0.20856363, + 0.19485915, + -0.047705356, + -0.32697544, + -0.7931921, + 0.019487567, + 0.12637736, + -0.1609321, + 0.55731714, + 0.097081766, + -0.21359484, + -0.55772555, + 0.19722511, + 0.27280506, + -0.3203401, + 0.22275037, + -0.12240959, + -0.17405395, + -0.39586347, + 0.27450877, + 0.12937015, + 0.12750727, + -0.4053597, + -0.468646, + -0.031685162, + -0.09188672, + -0.04874848, + 0.12770747, + 0.33860713, + 0.5243453, + -0.04679083, + 0.10053653, + 0.06549233, + 0.15000853, + -0.087590255, + 0.5222434, + 0.7876439, + 0.4583913, + -0.061303586, + 0.01976714, + 0.41601574, + 0.81642044, + 0.51794267, + 0.33250532, + -0.26579896, + -0.15804335, + -0.01966207, + 0.41194206, + -0.09763863, + -0.32625365, + -0.004959924, + -0.18148206, + -0.37532008, + 0.7159233, + -0.46937513, + -0.26835445, + 0.07513886, + -0.056224108, + 0.096346274, + 0.9037197, + -0.5023751, + 0.2899629, + 0.84151477, + -0.03865024, + -0.21180296, + -0.38464284, + -0.07266723, + -0.26846892, + 0.3381745, + -0.04981286, + -0.2894829, + 0.58900654, + -0.040414024, + 0.16378707, + 0.15510823, + 0.14505216, + -0.047563903, + -0.074382454, + 0.30430233, + -0.3858909, + 0.12309824, + 0.052641176, + -0.37547305, + 0.8152657, + 0.03078861, + 0.32295343, + 0.06905412, + -0.08102481, + 0.35439444, + -0.31769568, + 0.01026522, + -0.18288943, + -0.3909651, + 0.8626893, + -0.11527869, + 0.48890898, + -0.034046974, + -0.29530543, + -0.7619819, + 0.13989583, + 0.64122593, + 0.40454918, + 0.51814765, + -0.42360753, + -0.13860384, + 0.061985075, + -0.027465858, + -0.22388154, + -0.23838803, + 0.018694684, + 0.52114564, + -0.69672483, + 0.21743992, + 0.24562743, + -0.014547704, + -0.41148606, + -0.34475613, + 0.227848, + -0.47558486, + -0.34466496, + 0.03661737, + 0.419892, + -0.23552546, + 0.330673, + 0.8524864, + 0.31100434, + -0.36136356, + 0.33359683, + -0.15545678, + 0.004112195, + -0.06739663, + -0.3082544, + -0.48241028, + -0.8155121, + -0.38147786, + 0.3712898, + -0.8337603, + 0.1863464, + 0.54827714, + -0.43362215, + 0.098662145, + 0.67495006, + -0.24531858, + -0.04242445, + 0.07362506, + -0.03898607, + -0.12182131, + -0.4792208, + 0.054577187, + 0.101546705, + -0.2515872, + -0.22690767, + -0.35121363, + -0.98545337, + -0.27292845, + -0.17451453, + -0.077686824, + -0.11044136, + -0.03932044, + 0.65096784, + -0.07082595, + -0.10320905, + 0.39234242, + -0.091781646, + 0.4770295, + -0.52377564, + -0.30576026, + 0.5277612, + -0.2028412, + 0.20080598, + -0.30133975, + -0.49084705, + -0.5713453, + -0.11885302, + -0.2254045, + -0.58996063, + -0.032251753, + -0.22968276, + 0.19265749, + -0.38136417, + -0.1239446, + 0.0011623567, + -0.05083348, + -0.71889824, + -0.5675693, + 0.1611644, + 0.44999593, + -0.3723476, + -0.33120507, + 0.7540611, + 0.6511371, + -0.16195881, + -0.3070734, + 0.07806372, + -0.86201143, + -0.2945024, + 0.1137352, + 0.1834323, + -0.16631421, + -0.08936679, + -0.5299064, + 0.03910493, + -0.18636551, + -0.2889297, + 0.20696115, + 0.35369927, + 0.20289145, + -0.33764002, + -0.09430855, + -0.38317084, + 0.037244115, + 0.5759634, + 0.7129554, + 0.12617187, + 0.43276685, + 0.312478, + 0.019973127, + 0.09000402, + 0.2178308, + 0.0024562012, + -0.21913712, + -0.27937582, + 0.3058015, + -0.03358838, + -0.56743157, + -0.15920109, + 0.47228032, + 0.62870574, + 0.02999929, + 0.5130141, + 0.1978101, + -0.41866818, + -0.0149106365, + 0.31725156, + -0.0802273, + -0.116397515, + 0.5366313, + 0.30377573, + 0.07121404, + 0.02335701, + -0.07385683, + 0.6928565, + 0.081953086, + -0.25459424, + 0.10986748, + -0.08487703, + -0.059321046, + -0.098643646, + -0.2886576, + 0.0008137748, + 0.16832677, + 0.8399263, + -0.42941827, + -0.290886, + 0.5879338, + -0.0943083, + -0.026265424, + -0.25865796, + 0.34909162, + 0.45110312, + -0.35540134, + 0.36146218, + -0.2786593, + 0.57091653, + 0.20982745, + -0.33232117, + 0.24003023, + -0.08089431, + 0.08968344, + -0.2977375, + 0.46187538, + 0.018337708, + -0.25077543, + -0.14733641, + -0.3545895, + 0.55492234, + 0.24044016, + -0.6480576, + 0.130783, + -0.036952883, + 0.028617553, + 0.28996667, + 0.33184603, + -0.16738628, + -0.10877174, + -0.20964444, + 0.292027, + -0.26348716, + -0.3704903, + -0.52670956, + 0.19282788, + 0.29716104, + 0.9259522, + 0.19924662, + -0.47499955, + 0.35689396, + -0.47658744, + 0.008514266, + 0.410699, + -0.55712587, + 0.17223139, + 0.21658553, + -0.82245743, + 0.20009941, + 0.38614374, + 0.037410453, + 0.37453866, + -0.09873213, + -0.19888031, + -1.1254762, + -0.5996504, + 0.5107833, + -0.113702364, + 0.007988565, + -0.11390634, + -0.25078768, + -0.016949652, + -0.5926905, + -0.2582782, + 0.08202977, + -0.38086262, + -0.017230818, + 0.78881687, + 0.009829938, + 0.21818006, + 0.14945383, + 0.15970464, + 0.09800721, + 0.09753589, + 0.6123523, + -0.3973355, + 0.10512462, + 0.2740837, + -0.4168057, + 0.7247981, + 1.1398716, + 0.1558471, + 0.08539438, + 0.02868146, + -0.051404186, + 0.07461022, + -0.32217532, + 0.1819247, + -0.23899433, + 0.01592201, + 0.21257447, + 0.34466317, + 0.92074054, + 0.05108045, + -0.09421566, + 0.5694568, + -0.107999034, + 0.60161024, + -0.19636214, + -0.25250778, + -0.27944362, + -0.21642303, + -0.38906565, + -0.18214786, + -0.3653047, + 0.078966886, + 0.54663557, + -0.41351607, + 0.4484713, + 0.06653538, + 0.022298466, + 0.2672264, + 0.15730172, + -0.5184722, + -0.17143613, + 0.13028741, + -0.30456072, + 0.4932968, + -0.18217486, + -0.6264838, + -0.5055411, + 0.071678095, + -0.6292123, + 0.041987184, + 0.1798709, + 0.04998335, + -0.3450161, + 0.09068437, + -0.09607725, + -0.2890489, + -0.21462223, + 0.1940257, + -0.26697046, + -0.24825825, + -0.31663013, + 0.1315463, + -0.25506938, + -0.4076334, + 0.9255704, + -0.4903977, + -0.41694367, + 0.4183383, + 0.45987973, + 0.16560909, + 0.043659765, + -0.07942539, + -0.39618072, + -0.17740367, + 0.045842808, + 0.08081761, + -0.25314695, + 0.22389689, + 0.15246743, + 0.049586136, + -0.15456721, + -0.50682515, + 0.5409346, + -0.7032192, + -0.3539291, + -0.8000236, + 0.3321388, + -0.05679696, + 0.41920185, + -0.42620277, + 0.2735629, + 0.124630906, + 0.029739976, + -0.26046753, + 0.03180387, + -0.2669118, + 0.30640888, + -0.17302185, + -0.08427471, + -0.3992293, + -0.06521553, + 0.6178433, + 0.23549345, + 0.17295313, + 0.44622117, + 0.26672995, + 0.03762978, + 0.2365926, + -0.0121914465, + 0.11941968, + -0.036890764, + -0.5374711, + 0.9265633, + 0.3641398, + 0.43389636, + -0.51161754, + -0.5022135, + 0.43626723, + 0.3706719, + 0.2118917, + -0.40035558, + -0.15030867, + 0.47702953, + 0.21849723, + 0.43490595, + -0.45268476, + -0.08872833, + 0.08579644, + -0.43232027, + -0.41003504, + -0.402201, + 0.16690384, + -0.08179561, + 0.252404, + -0.40165174, + -0.113820806, + 0.27089784, + 0.37881324, + -0.45242876, + -0.119031556, + 0.26555106, + -0.006113112, + -0.06218499, + 0.078941405, + -0.19111665, + -0.23900408, + -0.3671733, + 0.030129587, + 0.18399382, + -0.14180627, + -0.04421821, + 0.5842025, + 0.23454142, + -0.25413555, + 0.14393127, + -0.099988095, + -0.08738351, + 0.9069038, + -0.47876003, + -0.41826642, + 0.19028097, + -0.46950024, + 0.29542574, + 0.4490241, + -0.02069278, + -0.17547676, + 0.13672361, + -0.12487464, + 0.22670579, + 0.17022571, + 0.19238675, + 0.71177465, + -0.24124925, + -0.30717227, + -0.15682207, + -0.050933976, + 0.07727265, + -0.66712177, + 0.48224786, + 0.04402926, + 0.32317436, + -0.42534146, + 0.19108811, + 0.019992642, + 0.5749297, + -0.4353638, + -0.05209191, + -0.41327205, + 0.1411579, + 0.086704, + 0.18043754, + 0.46786126, + -0.027490435, + 0.31732014, + 0.4620303, + 0.21802087, + -0.3017462, + 0.08877404, + -0.10466983, + -0.23543775, + -0.73294085, + 0.14943215, + 0.044115983, + -0.15680969, + 0.5556082, + -0.46341863, + -0.23965766, + -0.73132807, + -0.15808097, + 0.63977766, + 0.031931866, + -0.007828007, + -0.20656219, + 0.4465946, + -0.13852842, + -0.19481215, + 0.21316244, + 0.09432639, + 0.14717728, + 0.105731644, + 0.30227515, + -0.4756776, + -0.13216028, + -0.7352478, + -0.53548205, + -0.051679604, + 0.20631483, + -0.18358833, + 0.07204904, + -0.04613191, + -0.48201025, + -0.2025435, + -0.1553475, + -0.0082765315, + 0.0021823756, + -0.3422866, + 0.033421293, + -0.5794189, + 0.8407515, + -0.87416494, + -0.010459706, + 0.21605355, + 0.6057884, + 0.04999288, + -0.051267534, + 0.26570678, + -0.39252287, + -0.047345262, + 0.0019045025, + -0.01743745, + 0.19776222, + -0.14059907, + 0.3517576, + 0.67221826, + -0.23444971, + -0.3743894, + -0.53071815, + -0.23642766, + 0.097572036, + 0.3526124, + 0.18644369, + 0.24241522, + 0.14675097, + -0.13100407, + -0.5918497, + 0.048125375, + 0.18095517, + -0.83881354, + 0.2793264, + -0.4927774, + -0.13814324, + -0.44716123, + 0.37800866, + -0.119697675, + 0.011659047, + 0.23456651, + -0.021110743, + -0.050856575, + 0.22107223, + -0.35833353, + -0.048139505, + -0.38540345, + -0.09470033, + -0.4235613, + -0.7269284, + 0.07801462, + -0.27534997, + -0.9552277, + 0.12146942, + 0.15970899, + -0.13024709, + -0.5335079, + 0.8584491, + 0.054212585, + -0.57314396, + -0.1480619, + 0.018087234, + 0.10186708, + -0.87455475, + -0.57063013, + 0.1245783, + -0.04981219, + -0.060127832, + -0.030394346, + -0.19197997, + 0.06760583, + 0.32466257, + -0.14033952, + -0.15018532, + 0.060018882, + -0.47967654, + 0.36741433, + 0.06811163, + 0.17008136, + -0.53431666, + -0.3614384, + 0.10043399, + 0.55275685, + -0.06216395, + 0.013523653, + 0.0086090285, + 0.21490522, + -0.6569529, + 0.17505145, + -0.05497944, + 0.31817544, + 0.1265224, + -0.48085168, + -0.2378861, + 0.17799155, + 0.123813465, + -0.076036215, + 0.22801481, + -0.07343795, + -0.2960186, + 0.58616394, + 0.028885597, + 0.48439476, + 0.56947213, + 0.34093577, + 0.05374577, + -0.62694335, + 0.75001085, + -0.28683648, + -0.04178404, + -0.75739384, + 0.26535565, + -0.13762185, + 0.35176384, + 0.037043743, + -0.21988142, + -0.22028707, + 0.013810039, + -0.64680314, + -0.06349965, + -0.3025728, + 0.3671091, + -0.16024297, + 0.5026206, + 0.037790816, + 0.16780943, + -0.03947652, + 0.6654925, + -0.10385238, + 0.4092394, + -0.009219738, + 0.059217047, + -0.19153455, + -0.44397822, + -0.11809682, + 0.1260096, + -0.12449892, + 0.2007513, + -0.3045962, + -0.13209844, + 0.6111055, + 0.3026933, + 0.8037558, + 0.11538359, + -0.33313167, + -0.055685855, + 0.054417685, + -0.15248173, + 0.30076596, + 0.13716319, + -0.5712851, + 0.3891684, + 0.26152048, + 0.4203959, + 0.036933377, + -0.4319454, + -0.28551754, + 0.017684318, + 0.22160824, + 0.44408068, + 0.44573212, + -0.008354049, + 0.25855583, + -0.08579841, + 0.10992867, + 0.212869, + 0.036901664, + -0.31680363, + 0.62077886, + 0.374947, + 0.031086665, + 0.72747856, + 0.119584456, + -0.28424543, + -0.03566774, + 0.36809945, + 0.08928934, + 0.42875987, + -0.13426416, + -0.1702614, + 0.33824736, + -0.43423307, + 0.28540143, + 0.32786945, + -0.13347945, + 0.080083944, + 0.010167793, + -0.2322206, + -0.35421264, + 0.21657369, + 0.15161136, + -0.37010014, + 0.010822529, + -0.21322241, + -0.1076278, + 0.01660639, + -0.2978794, + 0.057266265, + 0.06769035, + 0.3464602, + 0.32845995, + -0.11300166, + 0.0294021, + 0.16493326, + 0.05593534, + 0.30448037, + -0.16910394, + 0.0910083, + 0.2392782, + -0.14683455, + 0.87557214, + 0.55410033, + -0.4011798, + -0.02103427, + -0.1795123, + 0.094825365, + -0.3555215, + -0.43804342, + -0.40228975, + -0.2081953, + 0.41411886, + 0.023502665, + -0.42560637, + 0.41251594, + 0.36667886, + -0.078081414, + 0.12028064, + 0.046292383, + 0.5380337, + -0.37641725, + 0.028952084, + -0.5120724, + -0.024499133, + -0.2444987, + 0.22903106, + 0.21325238, + -0.24167348, + 0.097905144, + 0.8546463, + -0.029499542, + 0.22881053, + -0.0961626, + 0.26125896, + 0.70006853, + 0.3113179, + 0.10514471, + 0.22516295, + 0.18668272, + 0.17133197, + 0.40563694, + -0.18695016, + -0.06567124, + 0.120568134, + 0.04438822, + -0.069247946, + -0.4587872, + 0.31199235, + -0.14861648, + 0.11203278, + 0.23531675, + 0.18250783, + 0.47738025, + 0.5108473, + 0.4239732, + -0.07652202, + 0.1433823, + -0.26051852, + 0.031035524, + 0.024118446, + 0.07600614, + -0.32805812, + 0.002581142, + 0.08066723, + -0.3516255, + -0.48156914, + -0.29400933, + -0.09547861, + -0.10555089, + 0.20663373, + -0.032584462, + -0.21473047, + 0.07050566, + -0.50129706, + 0.41608053, + 0.25420785, + -0.25865543, + -0.51864684, + -0.0983159, + -0.44819823, + 0.3936638, + 0.04694903, + -0.54191357, + -0.38527927, + 0.12975766, + -0.3029484, + 0.08293193, + 0.6302585, + -0.23793933, + -0.23428884, + 0.17348258, + 0.20523351, + 0.012134874, + 0.24703194, + -0.36114085, + -0.022778288, + 0.095217824, + 0.7496907, + 0.1906197, + -0.23438525, + 0.53418005, + -0.2802341, + 0.01022163, + 0.0760252, + 0.111532286, + 0.4389631, + 0.045519896, + -0.32444116, + -0.32643354, + -0.20295256, + -0.8235279, + 0.17627843, + 0.7164485, + -0.13235977, + 0.30631968, + 0.33759418, + 0.536431, + -0.078100495, + 0.034237713, + 0.22985068, + -0.3619376, + 0.10277475, + 0.22478308, + 0.01051496, + 0.067732245, + -0.05382456, + 0.26086462, + -0.2504573, + -0.2826854, + -0.07047109, + 0.073169366, + -0.27716532, + -0.0015296489, + 0.70835984, + 0.009485222, + -0.28480753, + 0.18213597, + -0.49422705, + -0.106290564, + -0.26712662, + -0.14089054, + 0.4073733, + 0.24990521, + -0.21663104, + -0.34164974, + 0.19806218, + 0.08757973, + 0.1735103, + 0.13821153, + -0.01913929, + 0.52424246, + -0.53359693, + -0.32855862, + -0.17660622, + -0.07725928, + -0.21871358, + 0.063272014, + -0.11694294, + -0.19619739, + 0.39203867, + 0.34497496, + 0.00968425, + -0.40117228, + 0.041847542, + -0.6226212, + -0.30022696, + 0.14355904, + 0.005571505, + -0.27352148, + 0.023582727, + -0.005375512, + -0.27644816, + 0.49334803, + 0.50502634, + -0.6184178, + -0.06339064, + 0.16493094, + -0.059731133, + 0.5060758, + -0.14926529, + -0.9357425, + -0.48184216, + 0.5180299, + -0.5632575, + -0.023265433, + -0.012530537, + -0.36599427, + 0.3855212, + 0.099426135, + -0.12885815, + -0.17985141, + -0.050658707, + 0.1771085, + 0.42179242, + -0.09094602, + -0.06849867, + -0.7441382, + 0.085169435, + 0.1553886, + 0.03784372 + ], + "2025-05-20T05:33:18.572911", + "2025-05-20T05:33:18.572911", + -74.6829681396, + -61.310043335, + 31.0393733978, + "5", + "ID: 8952219
Cluster: 5
Chunk: 17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\n..." + ], + [ + 11710, + "1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n\n\n287.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 1 nichtlineare\nGleichheitsbedingung\nMin [ x 2 + x 2 ]\n1 2\nx = ( x \u2013 2 ) 2\n2 1\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\n\uf0e0 \u00dcbungen 7.2.3 \u2013 7.2.5\n297.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nMin f(x), x in RN\nf\u00fcr N = 1: Newton-Algorithmus\nx = x \u2013 f\u2019 \/f\u2019\u2019 = x \u2013 (f\u2019\u2019 )-1*f\u2019\nn+1 n n n n n n\nf\u00fcr N > 1: Newton-Algorithmus\nx = x \u2013 H-1 (x ) * gradf (x )\nn+1 n n n\nx = x \u2013 H-1 * gradf\nn+1 n n n\nWie f\u00fcr N=1: exakt falls f(x) quadratisch.\n\n307.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nFalls f(x) nicht quadratisch und wir haben einen guten Startwert in der N\u00e4he eines lokalen Minimus (konvexes Gebiet),\nf\u00fchren wir Iterationen durch\n\uf0e0 Beispiel \u00dcbung 7.3.1 in der Vorlesung\nWeiter: Um die Stabilit\u00e4t zu erh\u00f6hen f\u00fchren wir noch eine Schrittweiten-Steuerung ein (hilft, wenn der Startwert nicht so gut\nsein sollte).\n\nx = x \u2013 c*H-1 * gradf\nn+1 n i n n\nmit 0 < c \u2264 1 steuert die Schrittweite (z.B. Backtracking).\n\ni\n\uf0e0 Hausaufgabe 7.3.2\n317.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nOder auch: Methode des steilsten Abstiegs\nIn der Praxis erweist sich die Bestimmung von H-1 als schwierig und aufwendig.\n\nn\n\uf0e0 H-1 durch etwas \u00abeinfacheres\u00bb n\u00e4hern.\n\nn\n\uf0e0 brutal einfache Idee : H-1 \u2248 1.\n\nn\nDamit ergibt sich der Steepest-Descent-Algorithmus mit Schrittweitensteuerung:\nx = x \u2013 c * gradf\nn+1 n i n\nmit c > 0 steuert die Schrittweite.\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n327.", + 18240, + 4255267, + null, + "md", + null, + [ + -1.1105303, + 0.06864798, + 0.71910334, + -0.18397726, + 0.40972143, + -0.7054399, + 0.120589584, + 0.06977714, + 0.17998672, + -0.5044099, + -0.14304009, + -0.3858181, + 0.32415226, + 0.1237356, + -0.23963083, + 1.1129233, + 0.052708745, + 0.17511317, + 0.24991876, + -0.7547415, + 0.3843258, + -0.39785877, + 1.0093063, + -0.030776199, + -0.021194581, + 0.54484457, + 0.12631112, + 0.22197092, + -0.37498313, + -0.050174035, + 0.039562397, + -0.15975536, + -0.49124312, + -0.16598295, + 0.23522797, + 0.08347469, + 0.01383692, + -0.31489384, + -0.2513137, + 0.92324513, + -0.6272385, + 0.43500167, + 0.0059109367, + 0.72570336, + 0.4175001, + 0.3460745, + -0.34581363, + -0.933015, + -0.9015244, + -0.17036553, + -0.71259964, + 0.6026952, + 0.2573188, + -0.38227403, + 1.1507255, + -0.42278057, + 0.107027724, + 0.33497873, + 0.44944993, + 0.64581823, + 0.7512649, + 0.20085537, + -0.23012249, + 0.07650302, + -0.033337962, + 0.6877012, + 0.24642086, + 0.25405875, + 0.23693666, + -0.17440178, + -0.42489418, + 0.45982778, + 0.15547007, + 0.426689, + -0.49688837, + 0.5602239, + 0.08272434, + 0.34826818, + 0.49954945, + 0.15854914, + 0.76822096, + -0.83671963, + -0.18912646, + -0.5483409, + 0.8681829, + 0.16226247, + 0.09169914, + 0.14857711, + 0.5682444, + -0.7125236, + 0.31854573, + 0.3060955, + 0.20546785, + 0.34898773, + -0.13908522, + 0.007658899, + 0.46188152, + -0.06491899, + -0.7243664, + 0.46457994, + -0.15860783, + 0.43750754, + 0.6044529, + -0.37283018, + 0.47789022, + -0.3771025, + 0.20851119, + 0.428959, + 0.5048888, + 1.2367183, + 1.3042477, + -0.8239044, + 0.2385473, + -0.21983874, + 0.14078932, + -0.5094715, + -0.67042434, + -0.17447896, + -0.3901482, + 0.33460575, + 1.1141772, + -0.2561117, + 0.19750887, + 0.6886864, + 1.6684773, + 0.02923269, + -0.15279582, + 0.9326503, + -0.4296056, + 0.1846486, + 0.32710308, + 1.330249, + -0.0437195, + -1.09105, + 0.46557397, + 0.23119096, + 0.34279835, + -0.7199694, + -0.0203703, + 0.4215241, + -0.15992266, + -0.31821904, + -0.044296265, + -0.4966639, + 0.11851539, + -0.27752948, + -0.8255361, + 0.05114995, + 0.3885741, + -0.21624427, + 0.3705124, + 1.0041915, + 0.111864805, + -0.122296736, + -0.48367423, + 0.5297337, + 0.131815, + -0.03928748, + -0.16495071, + 0.26176965, + 0.0054346323, + 0.50323594, + -0.50040245, + -0.06999241, + -0.008060186, + -0.8073232, + 0.20860928, + -0.5522947, + 0.80496764, + -0.69027996, + -0.2414091, + -0.4414382, + 0.41378978, + -0.039782956, + 0.10689332, + 1.1175846, + 0.95411474, + -0.44457474, + 0.2948665, + 0.16916165, + -0.2124489, + 0.2538707, + -0.54245025, + -0.23399425, + -0.038313173, + 0.5289067, + 0.25330588, + -0.0041545033, + -0.32928854, + 0.080382414, + 0.22808817, + 0.026764773, + 0.18684019, + -0.04875319, + -0.39426947, + 0.02765483, + -0.8620125, + -0.03506009, + -0.44637594, + -0.0065398254, + 0.28961688, + -0.014371585, + -0.09094451, + -0.75126004, + -0.33307344, + 0.18529226, + -0.18279, + -0.2580526, + 0.614034, + 0.52030194, + 0.096954666, + 0.13978429, + -0.68663496, + -0.12573875, + -0.26340753, + 0.041743796, + 0.35363537, + 0.5310409, + -0.6506557, + -0.41990474, + 0.11847888, + 0.080018155, + -0.42661023, + -0.1720043, + 0.15585846, + -0.3275026, + -0.7652888, + 0.21869761, + 0.7052209, + 0.07132223, + -0.32732052, + -0.88082504, + 0.4424097, + 0.18308438, + -0.3803045, + 0.17524582, + -0.10954079, + 0.16287203, + 0.18842126, + 0.2991001, + -0.10375947, + -0.22646366, + -0.379678, + -0.05731316, + 0.08060378, + 0.042814624, + 0.25985786, + -0.19103247, + -0.19963361, + 0.28536248, + 0.4675508, + -0.10763236, + -0.067371756, + 0.16797325, + 0.8809258, + 0.34084556, + -0.20532188, + 0.37432745, + -0.34357798, + -0.16109258, + -0.29194498, + 0.3963269, + 0.53382224, + 0.16745435, + -0.39808068, + -0.52530694, + 0.3193195, + 0.6577648, + 0.18169902, + 0.61751497, + 0.038960297, + 0.2771535, + -0.31212342, + 0.2185865, + -0.37959614, + -0.37459677, + -0.48089066, + 0.033542864, + 0.2014372, + -0.4467752, + 0.2874396, + -0.44939238, + -0.58884734, + 0.29352498, + -0.08405174, + -0.22757122, + -0.84223396, + 0.105583124, + 0.53204596, + -0.13129118, + 0.13974395, + -0.6793457, + 1.4364417, + 0.14187251, + 0.033263985, + 0.55714124, + -0.039508656, + 0.026957631, + -0.23280469, + -0.28100026, + -0.07807992, + 0.5626843, + 0.19889536, + 0.95478994, + 0.019520806, + 0.1190522, + 0.61991984, + -0.34258968, + -0.97703403, + 0.36503848, + -0.3636386, + -0.17807478, + -0.047974244, + -0.49023667, + 0.87109727, + -0.20398958, + -0.69574606, + 0.22627309, + 0.93216777, + 0.27485296, + 0.35733914, + 1.1352645, + -0.1904095, + -0.9590375, + -0.45522413, + -0.25020036, + 0.47553122, + -0.13236031, + -1.140802, + 0.3533325, + 0.115164146, + 0.021325402, + 0.24647698, + 0.3125776, + 0.40119627, + 0.004510872, + -0.10840787, + 0.5121397, + -0.46261674, + -0.1767803, + -0.43057775, + 0.48331007, + -0.11961335, + 0.7821024, + -0.34275153, + -0.43428624, + 1.785649, + 0.9062295, + -0.13764703, + 0.5240913, + 0.28149745, + 0.09768115, + 0.092371866, + 0.121861994, + 0.33287755, + 0.35508943, + 0.1760278, + 0.010705935, + -0.2576356, + 0.22005095, + -0.6873311, + -0.3854786, + -0.2190774, + -0.564494, + 0.18347648, + -0.034773797, + -0.10258124, + -0.5740123, + -0.49859574, + -0.40598017, + -0.3312833, + -0.75496787, + -0.19651318, + 0.49373418, + -0.8207393, + 0.6566869, + -0.25271675, + 0.33018592, + -0.18147878, + 0.37913716, + 1.5860394, + 0.08559178, + 0.34965065, + 0.3799571, + -0.32417408, + 0.2926337, + 1.6300108, + -0.5999941, + 0.35125878, + 0.15870203, + -0.6013923, + 0.45150664, + 0.43582046, + 0.034671213, + -0.5870819, + -0.4218538, + 0.12212667, + 0.43651658, + -0.5772359, + -0.13933365, + 0.3609054, + 0.4227867, + -0.49589485, + -0.017801076, + -0.12664871, + -0.35934168, + 1.0178355, + -0.6611188, + 0.30662876, + -0.7993474, + 0.05708495, + 0.18055493, + -0.52790695, + -0.10943671, + 0.21233857, + -0.24715361, + 0.09498349, + 0.6254128, + -0.1633935, + 0.4771983, + 0.08875072, + 0.37884033, + -1.1512824, + -0.50297457, + -0.02422661, + 0.052352056, + 0.022915248, + -0.11444991, + -0.53335506, + 0.37040818, + 0.013516463, + -0.08985581, + 0.30061057, + 0.23975256, + -0.5424321, + -0.08811154, + 0.60525125, + 0.22729263, + -0.1127169, + -0.7324823, + -0.01788015, + -0.19729184, + -0.24238019, + -0.34710553, + 0.27686417, + 0.05814019, + -0.09468774, + 0.99828213, + 0.28084224, + 0.19601768, + -0.39963362, + -0.3878728, + -0.6471038, + 0.10939485, + -0.7038361, + -0.32483304, + -0.3746746, + 0.56944644, + 0.19136593, + 0.35877007, + -0.22494099, + -0.18444227, + -0.19393775, + -0.3107166, + 0.18459973, + -0.4619838, + 0.23389874, + 0.5245513, + -0.14129108, + -0.16505247, + 0.2787431, + 0.2650945, + -0.17652607, + -0.06749089, + -0.0879906, + -0.36439008, + 0.40752098, + -0.2456465, + -0.3904669, + 0.5087926, + 0.2542777, + -0.5549849, + -0.054044507, + -0.10270067, + 0.28421572, + 0.4005112, + 0.9951851, + 0.21875261, + -0.06905327, + -0.24362625, + -1.1253903, + -0.7941209, + -0.19581716, + 0.29784214, + -0.08279458, + -0.434929, + 0.11714066, + 0.18987226, + 1.0101738, + 0.36477405, + 0.1711286, + 0.039741315, + 0.58920157, + 0.16777097, + 0.25667265, + -0.7657878, + 0.028106496, + -0.095135815, + -0.111176625, + -0.48422214, + -0.29852122, + 0.5058516, + -0.52110934, + -0.15612105, + -0.2714553, + 0.7762082, + 0.4034827, + 1.0955511, + 0.1230042, + -0.036324833, + -0.07041969, + -0.24916604, + 0.3776015, + -0.0328333, + -0.016303156, + -0.26461494, + -0.72711647, + 0.40330595, + 0.38047758, + 0.8074109, + 0.25145197, + 1.2523563, + 0.7509255, + 0.6390604, + -0.2509333, + 0.019083098, + 0.40929186, + 1.1858506, + -0.3352076, + 0.07303175, + -0.3796691, + -0.15612851, + 0.29420686, + -0.5696329, + -0.07644815, + -0.11020284, + 1.2661014, + -0.110909276, + -0.12385713, + -0.304861, + -0.123733155, + 0.3145373, + -0.84466094, + 0.22060211, + -0.48925275, + 0.021709561, + 0.15450649, + -0.6535776, + 0.11252625, + -0.4578085, + 0.8174044, + -0.6616547, + -0.29430827, + -0.22683533, + 0.22489397, + -0.020723335, + 0.25271899, + -0.6728952, + -0.21852478, + -0.030229092, + -0.08496626, + 0.67081326, + -0.029307371, + 0.06445503, + 0.41632047, + -0.65324926, + -0.031140655, + 0.1576566, + 0.349308, + 0.059017055, + -0.24748975, + -0.18549292, + 0.3074503, + -0.84079504, + 0.53918856, + -0.26113427, + 0.3280797, + 0.10809176, + -0.41438866, + 0.35363057, + 0.37396908, + 0.2270721, + -0.20765495, + 0.15395367, + 0.24940708, + 0.26949677, + -0.08326705, + -0.1516345, + -0.695781, + -0.122069776, + 0.42573872, + -0.42601365, + -0.32304358, + 0.11542632, + -0.39539874, + -0.011652432, + 0.064125314, + -0.135322, + 0.032941982, + -0.28824317, + -1.0082732, + -0.96823835, + 0.045787625, + -0.7411304, + 0.09935844, + -0.39734027, + 0.06672399, + -0.78965956, + 0.37459344, + -0.05420341, + 0.3853338, + -0.2734422, + 0.2113229, + -0.026246049, + -0.31864506, + 0.12599391, + -0.5994519, + -0.86117154, + 0.468274, + -0.6032009, + 0.09601588, + 0.41312465, + -0.3209449, + -0.09754009, + -0.4155526, + -0.5519665, + -0.29636472, + -0.2988368, + 0.21510585, + 0.23539805, + -0.15514478, + -0.28797078, + 0.090194196, + -0.21402475, + -0.4084905, + 0.39665645, + 0.39178103, + -0.44511044, + -0.04487765, + 0.37703162, + 0.2490856, + 0.1627794, + 0.31969994, + -0.23555893, + -0.2837101, + -0.23952943, + -0.40743858, + -0.021726249, + 0.41632074, + -0.8384392, + 0.10615899, + -0.19193977, + -0.09152026, + -0.29496303, + -0.8093186, + -0.66044396, + -0.061609194, + -0.093335465, + -0.21034856, + 0.23910706, + 0.52565265, + 0.24312948, + 0.4801275, + -0.3970605, + 0.46387064, + -0.4250062, + 0.5445057, + -0.114666395, + -0.2465068, + -0.8529581, + 0.7368318, + 0.14763872, + -0.120240636, + -0.54934037, + 0.30194625, + -0.29251516, + 0.031740792, + -0.034460746, + -0.2542066, + 0.4168505, + -0.9671753, + -0.23457798, + -0.7521877, + 0.35867122, + -0.48896146, + 0.17949642, + -0.25024804, + -0.20612532, + 0.19266412, + 0.04053463, + -0.19520822, + -0.15738888, + 0.12050636, + 0.6526376, + -0.37272647, + 0.31211823, + 0.14120765, + -0.3414366, + -0.16834323, + -0.75103384, + -0.079080775, + -0.8201376, + -0.66915274, + 0.17578691, + -0.275671, + -0.39475325, + -0.7329108, + 0.23844656, + -0.07115889, + -0.17620638, + -1.0856447, + -0.04089323, + 0.65981185, + -0.69207156, + -0.16327246, + -1.0689657, + -0.3518647, + -0.029521162, + -0.5622195, + 0.23544198, + 0.28452763, + -0.18528506, + -0.2528425, + -0.6097377, + -0.11817554, + -0.42296225, + -0.076926894, + -0.91704166, + 0.42127052, + 0.6000304, + 0.2510145, + 0.6921302, + 0.6602589, + 0.44675988, + 0.0014550984, + 0.4131712, + 0.24870285, + 0.19958766, + -0.073433496, + 0.29807794, + -0.17399168, + 0.45872694, + 0.28791225, + -0.43678206, + 0.1775451, + 0.93074065, + 0.7116844, + 0.5602035, + 0.20689188, + -0.38162875, + -0.56573653, + 0.12636757, + 0.31378677, + -0.45671836, + -0.023393795, + -0.678749, + -0.05573964, + -0.15586704, + -0.48272502, + -0.033282816, + -0.18048027, + -0.32637072, + -0.00801719, + -0.15639505, + -0.33848011, + 0.27257282, + 0.28096053, + 0.08820255, + -1.3359532, + -0.21391992, + 0.27776542, + 0.049850587, + -0.3309166, + 0.45910522, + -0.02199335, + 0.4694218, + 0.36279297, + 0.052174777, + -0.3495441, + -0.6839846, + 0.67633975, + -0.26291156, + 0.13073125, + 0.4577639, + -1.3472443, + -0.13164295, + -0.15087444, + -0.0017664209, + -0.3549154, + 0.31502098, + 0.14565648, + -0.0042060614, + -0.17033404, + -1.2440819, + 0.14316964, + -0.74710107, + -1.2358834, + -0.5794253, + -0.46833697, + 0.38450956, + -0.5598925, + 0.28171653, + -0.3090802, + 0.17262709, + -0.6327182, + 0.7142397, + -0.4575551, + 0.025754094, + -0.06805709, + -0.33854884, + -0.110400066, + -0.053272896, + -0.17558861, + -0.2335123, + 0.048465207, + 0.0932051, + 0.35556418, + -1.1568239, + 0.19264808, + -0.27289864, + -0.118323386, + -0.28286612, + 0.11987373, + 0.1847139, + -0.26473874, + 0.8681787, + 0.26198548, + -0.61988455, + 0.084982365, + -0.51875407, + -0.23560423, + 1.2545265, + -0.46645012, + -0.17804015, + -0.21264696, + 0.37829927, + 0.25311852, + -0.36393213, + 0.33603215, + -0.5894358, + 0.57282907, + 0.4165216, + -0.02604153, + 0.13038047, + -1.1411875, + 0.2403083, + 0.35721028, + -0.33274633, + -0.4946579, + 0.002807986, + 0.5879238, + -0.11253195, + 0.15760615, + -0.3483478, + 0.48679915, + 0.29527426, + 0.19538006, + 0.2486549, + 0.5151205, + -0.19653648, + 0.04460551, + 0.0074242596, + -0.9558667, + -0.5589962, + -0.19593254, + -0.38615942, + 0.4342917, + 0.70803744, + 0.4229658, + 0.25892523, + -0.19517276, + 0.59552723, + -0.013569218, + 0.39016718, + 0.07971147, + -0.5770758, + -0.3586735, + -0.08851129, + -0.17234452, + -0.04626517, + 0.21732575, + -0.47080076, + -0.5404438, + 0.038682777, + 0.29666921, + 0.3711045, + -0.35874394, + -0.4749197, + -0.18558252, + -0.14671841, + -0.23174514, + 0.019119544, + -0.0956137, + -0.2965467, + 0.37110817, + -0.25848454, + 0.06383601, + -0.32240415, + 0.027894374, + -0.059088536, + 0.15717682, + 0.1391348, + -0.086573765, + -0.020101182, + 0.3025839, + -0.032154508, + 0.17125145, + 0.3595258, + 0.51970357, + 0.5070759, + -0.60239834, + 1.0206281, + 0.20162502, + -0.11372903, + 0.8567957, + 0.6117821, + -0.0672604, + -0.39884433, + 0.12446738, + -0.027697533, + 0.2409701, + -0.12455918, + 0.45693174, + 0.30949667, + -0.27644885, + -0.037209578, + 0.050358504, + 0.49108413, + -0.62826383, + -0.10608076, + 0.22363849, + 0.26198286, + -0.17074172, + 0.69984496, + 0.060127042, + -0.02401757, + 0.53988266, + 0.44726926, + -0.053410646, + 0.41890454, + 0.8419215, + 0.67046434, + 0.041737787, + 0.35325855, + -0.086139575, + -0.47227225, + -0.8417843, + -0.60097176, + -0.18495233, + -0.23059589, + -0.19238016, + 0.08996245, + 0.0025395602, + -0.24765252, + -0.1088828, + -0.033133797, + 0.33764148, + -0.029799249, + -0.16948846, + -0.38876405, + 0.60200536, + 0.70088184, + 0.08807853, + 0.29296952, + 0.72140115, + -0.069158435, + -0.29968968, + -0.18085001, + -0.37848234, + 0.6036309, + -0.2623494, + -0.31688255, + -0.22401378, + -0.4470465, + 0.12137386, + -0.40893215, + 0.06824043, + 0.13132559, + -0.62592393, + -0.831249, + -0.12786356, + 0.1536017, + -0.11009611, + 0.61655146, + 0.18915254, + 0.1509565, + 1.2955658, + -0.0410868, + -0.17221646, + 0.20039602, + 0.6918029, + -0.11669619, + -0.018825464, + -0.27719763, + -0.36874655, + -0.067892864, + -0.077446, + -0.07295153, + -0.18485007, + -0.44056126, + -0.4891745, + 0.4581921, + 0.14438732, + 0.28514725, + 0.010154054, + -0.0017137006, + 0.057335004, + 0.32786247, + -0.0017977841, + 0.037860237, + -0.33589762, + -0.3430869, + -0.5623107, + -0.22093064 + ], + "2025-05-20T05:33:47.013692", + "2025-05-20T05:33:47.013692", + 39.4575691223, + 69.3716964722, + -100.0548782349, + "5", + "ID: 4255267
Cluster: 5
Chunk: 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein m..." + ], + [ + 11705, + "Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.csv\n[xData,yData] = np.loadtxt('DataSinus2.csv',delimiter=';\u2019)\nModellierung der Daten mit einer Funktion aus der Modellklasse\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit 4 freien Parametern a = ( a , a , a , a ).\n\nWas sind die besten Werte f\u00fcr a?\n\n1 2 3 4\nAnsatz mit der Summe der kleinsten Quadrate (Gauss, 17xx):\n\uf0e0 Tafel\n\uf0e0 Optimierungs-Problem mit 4 Design-Variablen\nMin S( a , a , a , a )\n1 2 3 4\nWie wir so was l\u00f6sen ist der Inhalt dieses Kapitels.\n\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nReellwertiges unrestringiertes Optimierungs-Problem mit N Design-Variablen (N Dimensionen)\nMin f(x), x in RN\nMin f(x x x ), (x x x ) in RN\n1 , 2 , ...., N 1 , 2 , ...., N\nBemerkungen:\n1.\n\nAbleitung f\u2019(x) \uf0e0 Gradient gradf(x)\n2.\n\nAbleitung f\u2019\u2019(x) \uf0e0 Hesse-Matrix H(x)\nf(x) ist konvex, falls H(x) positiv definit (alle Eigenwerte positiv) ist.\n\n\uf0e0 Es existiert kein oder genau ein lokales Minimum.\n\nSei f(x) 2-mal differenzierbar, dann gilt f\u00fcr lokale Minima an der Stelle x*:\ngradf(x*) = 0\nH(x*) positiv definit (alle Eigenwerte positiv).\n\nBemerkung: Die Definitheit der Hesse-Matrix m\u00fcssen Sie (noch) nicht selber berechnen k\u00f6nnen.\n\n27.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Himmelblau-Funktion\nMin f(x x )\n1 , 2\nmit (x 2+ x -11) 2 + (x + x 2 -7) 2.\n\n1 2 1 2\n4 lokale Minima:\n\uf0e0 \u00dcbung\n37.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Rosenbrock-Funktion\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n1 , 2 1 2 1\nL\u00f6sung f(1,1) = 0.\n\n\uf0e0 \u00dcbung\n47.\n\nReelwertige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\uf0e0 Tafel\nBeispiel:\n1.", + 18240, + 7115600, + null, + "md", + null, + [ + -0.8677129, + 0.38449863, + 0.5034417, + -0.103949405, + -0.37239298, + -0.27794132, + 0.391599, + -0.10016646, + -0.023383643, + -0.031077437, + -0.52423716, + -0.08872123, + 0.30995914, + 0.6822999, + -0.119418964, + 0.09067443, + 0.016116112, + 0.6925044, + 0.024169125, + -0.37904954, + -0.22198641, + -0.31751263, + 0.48463133, + 0.5453157, + 0.35345456, + 0.7434466, + 0.1971786, + 0.27662086, + 0.31977284, + 0.11300657, + 0.38406906, + -0.32944775, + -0.46555632, + -0.26303253, + -0.2412845, + -0.16615452, + -0.09764955, + 0.138378, + -0.27564964, + 0.7271903, + -1.0877059, + 0.44274616, + 0.37875715, + -0.11933943, + 0.07187103, + -0.6586425, + 0.035883073, + -1.042075, + -0.15784395, + 0.053753465, + -0.031198114, + -0.103145376, + -0.15183139, + -0.59188896, + 0.10971694, + -0.27303588, + -0.40526977, + -0.0869248, + -0.05297426, + -0.25260413, + 0.04365085, + -0.23578796, + -0.7966782, + 0.09036963, + 0.452434, + 0.24238236, + 0.28812692, + -0.20868042, + 0.29509905, + -0.12493083, + -0.3010679, + 0.50919765, + -0.42243803, + -0.41971892, + -0.93814427, + -0.23934957, + -0.43682522, + 0.6736841, + 0.09638877, + 0.4810211, + 0.18408929, + -0.53635347, + -0.22674835, + 0.101652205, + 0.14880627, + -0.31925437, + 0.8440288, + -0.12864676, + 0.061375417, + -0.30611688, + -0.098939754, + 0.12083363, + -0.18445729, + 0.1351458, + 0.53739446, + 0.2281075, + 0.17733218, + -0.40644616, + 0.36716953, + -0.016572032, + 0.17759605, + 0.065675505, + 0.29980537, + -0.64304966, + 0.028423548, + -0.008231394, + -0.12983397, + -0.2820076, + -0.35806096, + 0.44388634, + 0.62119794, + -0.75148696, + -0.29382035, + 0.14242853, + -0.24385549, + -0.6800736, + -0.3454406, + -0.20770605, + -0.2042584, + 0.14490873, + -0.080112845, + 0.27112952, + -0.23611274, + -0.2161046, + 0.19382887, + 0.09770059, + 0.31514162, + 0.774359, + -0.23147704, + -0.003095895, + -0.15588859, + 0.29996982, + 0.42214027, + -0.09385395, + 0.46597993, + 0.5464366, + -0.038051672, + 0.0030920692, + 0.1990273, + -0.681958, + 0.16675544, + 0.34496507, + -0.22195175, + -0.32797444, + 0.109007716, + 0.21384503, + 0.03738403, + 0.05435601, + 0.15479521, + -0.29673594, + -0.09295349, + 0.18050678, + 0.027905606, + 0.07845414, + -0.29401833, + -0.14570965, + 0.3295235, + -0.24244596, + -0.13325219, + 0.012187282, + -0.103971034, + -0.06908074, + -0.84419745, + 0.34697175, + -0.23199153, + 0.24222499, + -0.5815965, + 0.28281265, + 0.71487343, + 0.1252636, + -0.1227448, + -0.09130621, + -0.168206, + -0.07549646, + 0.14523718, + 1.6633526, + 0.1610722, + -0.7115796, + 0.19960459, + -0.04375214, + -0.02838863, + 0.25009215, + -0.50758046, + -0.2598561, + 0.30307338, + 0.30086303, + 0.27397737, + -0.45196956, + -0.10006909, + 0.2792545, + -0.023812154, + -0.35895404, + -0.54393876, + -0.19758372, + 0.32256964, + 0.09416733, + -0.2528673, + 0.0778212, + -0.2748389, + -0.06915656, + 0.37298128, + -0.48562604, + 0.0060008327, + -0.40627667, + -0.3575734, + -0.27067968, + -0.06875092, + -0.14482649, + 0.060018558, + -0.36958233, + 0.49518332, + -0.3162845, + 0.09303108, + -0.20803663, + -0.18165958, + 0.5659846, + -0.48165172, + -0.102702856, + -0.42841363, + -0.3648612, + 0.3442935, + -0.46712753, + -0.59087294, + 0.049332406, + 0.17716768, + 0.16116758, + -0.83777755, + 0.28441545, + 0.37038293, + 0.71866536, + 0.51192796, + 0.093074724, + 0.051387366, + -0.38548055, + 0.18472138, + -0.017110698, + 0.1538242, + 0.14527044, + 0.31607857, + -0.16547666, + 0.68981576, + 0.5073639, + -0.18169786, + 0.4614051, + 0.37481943, + -0.052386027, + -0.024014503, + 0.15356691, + -0.18409531, + 0.75584877, + -0.09637005, + -0.736194, + 0.015269533, + 0.053498026, + 0.05985881, + -0.37694034, + -0.045637425, + -0.014637537, + -0.27062765, + -0.29781878, + -0.5737223, + -0.009884398, + 0.33445743, + 0.47960562, + -0.17302854, + 0.7136193, + 0.54339045, + -0.006606519, + 0.26491672, + 0.31028005, + -0.25991896, + -0.15360041, + 0.31963262, + -0.22841227, + 0.66674244, + -0.36413848, + -0.78559417, + -0.077981025, + -0.35983363, + -0.4534709, + 0.09522638, + 0.19765519, + -0.23908812, + -0.20034929, + 0.30460328, + 0.17641485, + -0.25683525, + 0.015473574, + 0.06362705, + 0.3641251, + 0.06619412, + 0.14222832, + 1.1262512, + 0.10304833, + -0.35582897, + 0.6465648, + -0.09623715, + -0.034866333, + -0.18480788, + -0.3312717, + 0.46756756, + 0.37822342, + 0.6008807, + 0.049791206, + -0.36018905, + -0.016300328, + -0.059023544, + 0.28188148, + -0.73611987, + 0.40895593, + 0.169596, + -0.23356524, + 0.3284422, + -0.669259, + -0.018203467, + 0.4982425, + 0.011358835, + 0.29135782, + 0.48597714, + 0.044430777, + -0.68159646, + 1.306906, + 0.19303651, + -0.5479763, + -0.29159304, + -0.009169091, + -0.0001710318, + -0.47501424, + -0.7192249, + 0.065791115, + -0.17551464, + -0.2464306, + 0.21572736, + 0.815026, + 0.64819217, + 0.1574907, + -0.37782452, + 0.26763934, + -0.7702413, + -0.5461974, + -0.25644982, + 0.3952051, + -0.20841339, + 0.57553196, + -0.0586333, + -0.6636062, + -0.15291402, + -0.3240711, + -0.3628856, + -0.1823779, + 0.012059867, + -0.048033316, + 0.4499089, + -0.06053359, + -0.29176453, + 0.5130901, + 0.14416158, + -0.110812366, + -0.73263246, + 0.37775844, + 0.10316746, + -0.31787303, + 0.096167475, + -0.09379882, + 0.5288756, + -0.4892546, + -0.031770237, + 0.14766121, + -0.76784116, + 0.25138813, + 0.6208266, + -0.6818288, + -0.056409694, + 0.462582, + -0.4022105, + 0.34568053, + -0.7380424, + 0.6711152, + -0.24993435, + -0.01905682, + 0.91082776, + -0.17760576, + -0.28174835, + 0.023053562, + -0.65945476, + 0.6019287, + 1.5996196, + 0.25297853, + 0.21260265, + -0.381912, + -0.74125075, + -0.093818076, + -0.23531258, + 0.0071410164, + -0.24285987, + -0.019667689, + 0.5657288, + 0.69840294, + 0.2814387, + -0.5541072, + 0.15680724, + 0.4012352, + -0.19089532, + -0.0026431158, + -0.15500891, + -0.23506105, + -0.07436065, + 0.46535337, + -0.091493234, + 0.037556052, + 0.005591914, + 0.3419546, + 0.28339228, + -0.21983847, + 0.32518375, + 0.13626593, + -0.24531695, + 0.17158146, + 0.10525578, + 0.23198134, + 0.26012948, + 0.53322047, + -0.9648679, + 0.90402687, + 0.039599337, + -0.43984714, + -0.378577, + 0.6017511, + -0.23190522, + 0.1312438, + 0.34893507, + 0.076806605, + -0.051398624, + 0.19090651, + -0.39541277, + -0.22934592, + 0.52820617, + -0.29334238, + -0.11541413, + -0.04223468, + -0.041821554, + 0.0034344627, + 0.2462338, + -0.11726464, + 0.50051326, + -0.8151443, + -0.4832029, + 0.6653512, + -0.12973036, + 0.5524119, + -0.50332665, + 0.30068585, + -0.034295138, + -0.23812892, + 0.09758387, + -0.045340076, + -0.6871018, + 0.39823443, + 0.5138103, + -0.5840707, + 0.015899941, + 0.11490649, + 0.07205135, + -0.3296798, + 0.19743356, + -0.9364305, + 0.06340994, + -0.042909876, + 0.013973061, + -0.24161068, + 0.10627599, + -0.009756349, + -0.27846095, + 0.09640506, + -0.35589784, + 0.077770665, + -0.011339266, + 0.013920005, + -0.43086788, + 0.17021142, + 0.30862954, + 0.22162254, + 0.4477195, + 0.064791575, + 0.45378208, + -0.4040275, + -0.52942157, + 0.14406, + -0.6026994, + -0.5591655, + 0.46440226, + -0.43011835, + 0.32298824, + 0.29451442, + 0.65272284, + -0.221356, + -0.43158746, + 0.4219503, + 0.4975808, + 0.17689916, + -0.30817658, + -0.30384213, + 0.95060647, + -0.23652042, + -0.30024755, + -0.07645939, + 0.0733212, + 0.16238865, + -0.18126218, + -0.2966465, + 0.16946591, + -0.43085986, + -0.29835203, + 0.32510453, + 0.39320734, + 0.15220177, + 0.17522997, + 0.65690917, + -0.20209219, + -0.10321963, + 0.19027215, + 0.18424836, + -0.73269117, + 0.2898218, + -0.37705627, + 0.51666987, + 0.7672682, + -0.64380807, + 0.30989614, + 0.51319575, + -0.32414466, + 0.21376249, + 0.083515674, + -0.22867873, + -0.18729015, + 0.14172065, + -0.38412035, + 0.10191991, + -0.10710148, + -0.05246751, + -0.21779926, + 0.07429393, + -0.12470798, + 0.38702637, + -0.18808863, + -0.18495947, + 0.5583241, + 0.124198265, + 0.15450348, + -0.09098953, + 0.007678151, + 0.57476836, + 0.41003406, + -0.24130413, + 0.13162845, + -0.1277788, + 0.23713018, + -0.17239177, + 0.23606801, + 0.3333812, + 0.51908827, + -0.70675296, + 0.23831646, + -0.25382963, + 0.4951212, + -0.009558823, + -0.6993225, + 0.035746865, + 0.20331752, + 0.08372225, + -0.3498374, + -0.4089707, + -0.196937, + -0.44820562, + 0.39827922, + 0.0036188187, + 0.21423906, + -0.1814257, + 0.53104657, + 0.08921651, + -1.0334971, + 0.4518866, + -0.14956109, + 0.004806474, + 0.27276465, + -0.30744827, + -0.40481853, + -0.28853542, + -0.14925465, + 0.22222932, + 0.07904996, + -0.3883312, + -0.3581035, + 0.44300574, + 0.03373395, + 0.27324477, + 0.11624448, + 0.11493146, + -0.5149105, + -0.052048173, + 0.060577117, + -0.21792203, + -0.14050321, + -0.5332819, + -0.010245204, + 0.14973362, + 0.2569172, + -0.107157245, + 0.0024622157, + 0.32707268, + -0.4417266, + -0.026580062, + 0.14463358, + -0.089791134, + -0.09782401, + -0.71642166, + 0.09287296, + -0.77060926, + -0.19709383, + -0.9194681, + -0.1525639, + 0.11933191, + -0.30900234, + 0.056231417, + -0.11771465, + -0.2341075, + -0.25086987, + -0.010427795, + 0.5463162, + -0.015200205, + 0.6907332, + 0.1251505, + -0.15353295, + 0.93630445, + -0.039746102, + 0.09907111, + 0.1975646, + 0.04889652, + -0.1433468, + 0.3049885, + 0.060058147, + -0.023704857, + 0.17339277, + 0.48334795, + -0.30187047, + 0.12775701, + 0.22413976, + -0.53795075, + -0.38364974, + -0.17576103, + 0.12658387, + -0.114055455, + -0.07828965, + 0.5668642, + 0.06426323, + 0.22402683, + -0.6582414, + 0.06911688, + 0.83234197, + -0.5209273, + 0.2633744, + -0.6817556, + 0.3021385, + -0.17187938, + -0.32426077, + -0.096244305, + -0.018647477, + -0.25529093, + 0.30987966, + -0.095037945, + -0.35419542, + -0.27126974, + 1.0650063, + -0.26310295, + -0.08838308, + -1.0539042, + -0.24714902, + -0.11333246, + -1.0921423, + -0.42081082, + -0.15082797, + 0.028857294, + 0.033628143, + -0.21495612, + -0.2926299, + 0.1364038, + -0.030147232, + -0.20777914, + -0.5498395, + 0.50716555, + -0.3051731, + -0.10668424, + -0.5117071, + 0.12857714, + -0.88723874, + 0.25836244, + -0.18638407, + -0.24000427, + -0.044420496, + 0.49543738, + -0.7401626, + -0.31390744, + -0.5273016, + 0.55183375, + -0.015544508, + 0.19205777, + -0.010901431, + -0.099134326, + -0.48734608, + 0.80785024, + 0.022555793, + -0.27516332, + -0.29016322, + -0.35983434, + -0.027943376, + 0.10598241, + -0.09317787, + 0.19764309, + -0.17613566, + 0.048859157, + -0.25866, + -0.22007926, + 1.6601874, + -0.40900025, + 0.06020231, + -0.79781055, + 0.4681639, + -0.64713144, + 0.3598972, + -0.21131645, + 0.05815424, + -0.12314162, + -0.2858745, + 0.030169833, + -0.052484076, + -0.18478534, + 0.44099146, + -0.05709669, + 0.5503408, + 0.33285037, + -0.100567885, + 0.11988016, + 0.5661539, + -0.091002785, + -0.31044957, + 0.32355103, + -0.14730209, + -0.06930457, + -0.36410898, + 0.038085222, + -0.20999917, + -0.20859714, + 0.43130717, + -0.3971459, + 0.57021314, + 0.7151627, + 0.119030416, + 0.5034935, + 0.12971756, + -0.65661633, + -0.2685146, + -0.09698045, + 0.23475562, + 0.15049213, + 0.18724608, + -0.63479304, + 0.2627019, + -0.036174, + 0.48992413, + -0.49662024, + 0.20204961, + -0.014105301, + 0.5137299, + 0.07478692, + -0.27245393, + 0.49982172, + 0.87719613, + 0.40007007, + 0.011821356, + -0.12646848, + 0.21478756, + -0.02822202, + -0.6973522, + 0.46360746, + 0.486054, + 0.4324904, + 0.27049655, + -0.44782555, + 0.014330321, + 0.018207435, + 0.4861571, + -0.7922483, + -0.23233037, + -0.17783, + -0.17224686, + 0.25534725, + -0.34727436, + 0.40245464, + -0.303128, + -0.5797468, + -0.4945861, + 0.11900437, + 0.13080852, + -0.17568514, + 0.2759526, + -0.2915841, + -0.5327422, + -0.28053755, + 0.1247416, + -0.12488551, + 0.106467314, + 0.6328517, + 0.0077252686, + -0.2882198, + -0.32981363, + -0.17046352, + 0.09089766, + -0.15793027, + -0.12152904, + -0.17923546, + 0.13696058, + -0.12376932, + 0.23383996, + -0.12104483, + -0.36869413, + 0.55508417, + -0.03155939, + -1.1426764, + 0.101138234, + 0.29512116, + -0.08330268, + -0.37315777, + 0.038596496, + -0.45735112, + 0.4180167, + 0.99079037, + 0.83949685, + 0.33343226, + -0.009520985, + 0.6837219, + -0.36060882, + 0.4666746, + -0.13402303, + 0.44551027, + 0.38262567, + -0.28743887, + 0.4357034, + 0.06777623, + 0.065609604, + -0.23476627, + 0.8006793, + -0.10427764, + -0.13857622, + 0.23675565, + 0.26692772, + 0.060788624, + -0.17342782, + 0.12369254, + -0.32422072, + -0.25411233, + 0.20705137, + 0.041171245, + 0.9314698, + -0.16665624, + 0.11859638, + 0.45394987, + 0.22712448, + 0.3175522, + 0.2490424, + -0.3943425, + 0.2811667, + -0.017043853, + -0.28900692, + 0.16817608, + -0.1258317, + -0.065623716, + 0.0031274687, + 0.34097397, + 0.12076603, + 0.48703513, + 0.11692874, + 0.56269574, + -0.19112752, + -0.07311919, + 0.34374535, + -0.040866055, + 0.20982659, + 0.2763463, + -0.006103985, + -0.40376616, + 0.3670152, + -0.5602858, + 0.9546139, + 0.24567378, + 0.75674933, + 0.41949448, + -0.18829748, + -0.27252668, + -0.11446302, + 0.4484549, + 0.11535596, + 0.20224635, + -0.19448619, + -0.10065386, + 0.61145556, + -0.7360385, + -0.16137218, + -0.04779306, + 0.42038906, + 0.08639246, + -0.006755911, + 0.019409262, + -0.052430686, + 0.37743998, + -0.36329162, + -0.06088482, + 0.098424226, + 0.38755405, + 0.243746, + 0.16758263, + 0.22376105, + 0.04662345, + 0.4879437, + -0.096337944, + -0.41966712, + 0.24392587, + 0.079770096, + 0.031241484, + -0.07760427, + 0.27184457, + 0.30734983, + -0.22552514, + 0.060828116, + 0.1243669, + -0.5601942, + -0.027629115, + 0.27261627, + -0.27021277, + -0.11564485, + 0.06401227, + 0.22415261, + 0.04336218, + -0.011539176, + 0.77503246, + -0.22952406, + 0.29445598, + -0.20714317, + -0.06420124, + 0.13948661, + 0.22448975, + 0.2460634, + 0.5684196, + -0.46527392, + -0.27436405, + -0.13764127, + -0.69873625, + -0.28596783, + -0.29815343, + 0.19255164, + -0.36637872, + -0.3342491, + -0.4475326, + -0.42297924, + -0.14556545, + -0.14411473, + 0.033119533, + 0.20289685, + -0.13487886, + -0.16560218, + -0.046975326, + -0.19783111, + 0.91271216, + 0.061233066, + 0.039050132, + 0.7062236, + -0.22068395, + 0.062226884, + -0.26614362, + 0.29025498, + 0.54727256, + 0.20800003, + 0.25057772, + -0.17716455, + -0.29180112, + -0.088015646, + -0.18260396, + 0.25123534, + -0.2203457, + -0.14444835, + -0.47816253, + 0.14692993, + -0.014917048, + -0.017207861, + -0.11796917, + 0.21907195, + 0.674954, + 0.91696775, + 0.22635794, + -1.0598922, + -0.14739317, + 0.17613263, + 0.064032555, + -0.3697747, + -0.1002355, + -0.52560043, + -0.5298556, + -0.44263285, + -0.2334311, + -0.57108986, + 0.6232847, + 0.23685874, + 0.31788102, + -0.26660678, + -0.03228607, + -0.26121047, + -0.13510889, + 0.013088558, + 0.14346528, + -0.07527533, + 0.0029917061, + -0.07595745, + -0.14442702, + -0.28940168, + 0.039200053 + ], + "2025-05-20T05:32:49.855205", + "2025-05-20T05:32:49.855205", + -10.7878484726, + -120.8395004272, + -2.1933634281, + "5", + "ID: 7115600
Cluster: 5
Chunk: Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.cs..." + ], + [ + 11707, + "Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x ) = (3x 2 - 4 , 2x )\n1 , 2 1 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\nH(x x ) = ( (6x , 0), (0, 2) )\n1 , 2 1\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\nH(x x ) -1 = ( (1\/(6x ), 0), (0, 1\/2) )\n1 , 2 1\n(d) F\u00fchren Sie eine Newton-Iteration durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n(x x ) = (7\/6, 0)\n1,1 , 2,1\n53\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\ngrad f(x x ) = ( 2(1 \u2013 x ) + 200(x - x 2) * (-2x ), 200(x - x 2) ) = ( 2 \u2013 2x - 400x x + 400x 3 , 200x - 200x 2 )\n1 , 2 1 2 1 1 2 1 1 1 2 1 2 1\nf = \u2013 2 - 400x + 1200x 2\n11 2 1\nf = - 400x\n12 1\nf = 200\n22\nH(x x ) = ( (f , f ) , (f , f ) )\n1 , 2 11 12 12 22\nD(x x ) = f * f - f 2\n1 , 2 11 22 12\nH-1(x x ) = ( (f , -f ) , (-f , f ) ) \/ D(x x )\n1 , 2 22 12 12 11 1 , 2\n(b) Stellen Sie damit die Newton-Iterations-Formel auf.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.", + 18240, + 13438939, + null, + "md", + null, + [ + 0.09867265, + 0.110687315, + 0.09900243, + 0.22945201, + -0.027438357, + 0.098105095, + -0.23619112, + 0.27377382, + 0.80790806, + -1.145435, + -0.26627803, + 0.27242467, + 0.25694075, + -0.17047393, + 0.0046548173, + 0.2255554, + -0.007440608, + 0.04724682, + 0.56931907, + -1.3216007, + -0.6276884, + -0.17996022, + 0.6398254, + 0.13847172, + -0.58847064, + -0.06526394, + -0.10131427, + 0.12976587, + 0.8434964, + -0.03662455, + -0.20036188, + 0.28603286, + -1.4435623, + -0.9208557, + -0.0061098896, + -0.22824594, + 0.7398138, + 0.6441138, + -0.042619955, + 0.6896371, + -0.89302886, + 0.020537592, + -0.14137584, + 0.50674224, + 0.71288526, + -0.21917081, + -0.6392732, + -1.0851569, + -0.57332474, + -0.20589787, + 0.39523393, + -0.008719478, + 0.4454067, + 1.352019, + 0.8446945, + -0.36210468, + -0.44550562, + -0.016562834, + -0.21319818, + -0.68944293, + 0.19527213, + 0.36691156, + -1.0501814, + -0.038548496, + 0.059387237, + 0.50824606, + 0.25185212, + 0.51780015, + -0.81442404, + -0.15639305, + -1.5384686, + 0.886126, + 0.8889318, + 0.1941032, + -0.3524245, + 0.28974527, + -0.3919926, + 0.25909588, + -0.71588165, + 0.7518678, + 0.18113251, + -0.5172051, + -0.2135939, + -0.7259023, + -0.22092365, + 0.09246122, + 0.6795689, + -0.0964835, + 0.48404092, + -0.16994947, + 0.25550818, + 0.16290641, + -0.48754448, + 0.90228325, + -0.3905873, + -0.7532856, + 0.052534103, + -0.62905145, + -0.30898964, + 0.597511, + 0.15935259, + 0.9325677, + 0.5468651, + -0.07853602, + -0.7338609, + -0.3720457, + 0.039052363, + 0.09948737, + 0.21655971, + -0.14990564, + 1.0139805, + -0.3625022, + -0.0769975, + -0.22897094, + 0.10361455, + 0.4366969, + -0.5844264, + 0.22067347, + -0.35036597, + -0.3091964, + 0.6309018, + -0.97356504, + 1.0198308, + -0.01332613, + 0.4018996, + 0.4596646, + 1.0029926, + -0.953895, + -0.49996358, + 0.81756604, + -0.047458682, + 0.7188242, + 0.1741947, + -0.33094823, + -0.018873055, + -0.09688342, + 0.5864333, + 0.07713671, + 0.27733165, + -0.8468182, + 0.0058958456, + -0.6351061, + -0.6951874, + -0.44188684, + 0.8392646, + -0.38283327, + 0.5365428, + -0.7132146, + 0.381787, + -0.98611283, + 0.20805097, + -0.30635375, + -0.022463217, + -0.5851508, + 0.011305369, + 1.2283957, + 0.29369527, + 0.55758435, + -0.65065026, + -0.17258045, + 0.026285194, + 1.0469778, + -0.31926504, + -0.93676466, + 0.22036074, + 0.20531648, + -0.18193376, + 0.022729516, + 0.60301185, + -0.62440675, + 0.7517875, + 0.05332236, + -0.63979113, + -0.2312608, + -0.28119862, + 1.0172596, + 0.423002, + -0.60617286, + -0.082288235, + 0.4750282, + 0.29937342, + 0.64687127, + 0.12053876, + -0.7605794, + 0.18441123, + 0.12039928, + -0.43902045, + 0.030971423, + 0.023730263, + 0.5291866, + -0.14559428, + 0.086846314, + -0.6367214, + -0.351496, + 0.77415675, + -0.8972367, + 0.1373828, + -1.1501211, + -0.5072923, + 0.4559797, + 0.8680921, + 0.109660655, + 0.2347815, + -0.39081255, + -0.2860189, + 0.11794658, + -0.35708064, + -0.52179784, + 0.31262854, + 0.64121985, + 0.3992297, + -0.017667111, + 0.13086972, + 0.10269937, + -0.6367594, + 0.74641645, + -0.46381956, + 0.34287623, + 0.22562303, + -0.83569485, + 0.5072873, + 0.15824407, + 0.2516959, + -0.07341275, + -0.055763498, + -0.03743699, + -0.41779023, + 0.37540737, + -0.122679844, + 0.16157515, + -1.3832797, + -0.2555948, + 0.6092596, + -0.18214805, + -0.09976715, + 0.72257966, + 0.5831122, + 0.32459548, + 0.30583316, + 0.6776415, + -0.072715156, + -0.16565916, + 0.25940114, + -0.09497604, + -0.031302974, + 0.24850427, + -0.28234887, + 1.087359, + 0.041934676, + 1.1430496, + 0.36711502, + -0.2118273, + 0.19471383, + 0.57132405, + 0.40106648, + 0.25625247, + -0.10451258, + -0.5140797, + -1.0416801, + -0.8525772, + -0.34237617, + -0.30827492, + 0.36429378, + 0.20208435, + -0.32087877, + 0.72047895, + 0.29676986, + 0.060800962, + -0.057341106, + 0.15027753, + 0.12746187, + -0.29868138, + 0.7273164, + 0.42307875, + 0.060233243, + 0.07040104, + 0.1956526, + 0.20226702, + -0.3010223, + -0.7040386, + 0.59733295, + -0.5988953, + -0.61916137, + -0.59246016, + -0.21354197, + -0.082070306, + 0.062992066, + 0.1869354, + 0.9035603, + -0.45357558, + -0.19496956, + -0.7579504, + -0.42571357, + 0.2326057, + 0.16807349, + -0.17078543, + 0.5340854, + 0.049368024, + 0.19567993, + -0.43750215, + 0.85336375, + 0.7968932, + 0.6000461, + -0.21160668, + 0.022086024, + 0.5603159, + 0.024495777, + -0.87153345, + -1.1130608, + 0.21840627, + -0.30729377, + 0.11430499, + 0.41008744, + -0.09583238, + -0.3387219, + 0.25293368, + 0.124375165, + -0.35454127, + -0.41393188, + 0.62762606, + 0.14656812, + 0.36614552, + 0.84323794, + -0.74738854, + 0.084767215, + 0.20013428, + 0.7105891, + -0.49647114, + -1.1256988, + -0.0351355, + 0.13080926, + 0.29849023, + 0.34973088, + 0.9473583, + -0.14931956, + 0.103675455, + -0.5996921, + 0.5076246, + -1.1760892, + 0.37189907, + 0.24640553, + 0.074896485, + -0.7301519, + 0.5963416, + -0.4245016, + -0.3389464, + 0.60895747, + -0.46614942, + -0.49710497, + 0.20962489, + -1.0426294, + 0.2872895, + 0.4374295, + -0.77460456, + 0.48572594, + -0.11683272, + 0.24167877, + 0.3531498, + 0.6154695, + 0.110942736, + -0.086129256, + -0.3053316, + 0.14046031, + -0.9618248, + -0.6638855, + -0.43790448, + -0.16429031, + 0.7572856, + 0.06467402, + 1.1106212, + 0.12235008, + 0.4252285, + 0.41337997, + -0.07815869, + -0.11060463, + -0.017809942, + -0.35264122, + 0.9101371, + -0.33808795, + -0.10384929, + 0.44703686, + -0.551257, + 0.57970846, + 0.09262912, + 0.34195668, + 0.2234929, + 1.9648614, + -0.5446885, + 0.4880285, + -0.15534586, + -0.76321065, + 0.1703878, + 0.054060005, + -0.22604841, + 0.07696145, + -0.04604319, + 0.2906676, + 0.34214324, + 0.6001811, + -0.24069779, + -0.34061906, + 0.04339627, + -0.20146337, + -0.39078578, + -0.5047984, + 0.27993983, + 0.29602927, + -0.9045856, + -0.35371536, + 0.16146418, + 0.029872209, + -0.20257798, + 0.08453064, + -0.031050116, + -0.054522812, + -0.1937195, + -0.014151845, + 0.31501135, + 0.025905792, + 0.68801844, + 0.14908266, + 0.5094029, + -0.7902131, + 0.10568984, + 0.5294051, + -0.44659534, + 0.007424308, + -0.392659, + -0.431634, + -0.07916853, + 0.44436738, + 0.24379162, + 0.074617855, + 0.32943055, + 0.21191595, + -0.54157305, + 0.90286595, + 0.24486008, + -0.25633365, + -0.36245328, + 0.0059990063, + -0.14365603, + -0.9431555, + 0.71917295, + -0.7188447, + -0.34926623, + -0.31750152, + 0.2030716, + 0.6465947, + 0.8415656, + 0.5337228, + -0.2984532, + -0.43673453, + 0.11565148, + -0.6426203, + -0.121937096, + -0.16331066, + 0.15391085, + -0.28765538, + -0.40217626, + -0.09640377, + -0.6627671, + -0.10850626, + 0.15621935, + 0.1021995, + -0.4269496, + -0.20614898, + -0.36030325, + -0.07327028, + -0.28213018, + -0.040075917, + -0.32915586, + -0.9247641, + -0.3423927, + -0.1286877, + -0.8201297, + 0.013400342, + -0.13046214, + -1.1800265, + 0.2850166, + 0.039527092, + -0.070888095, + 0.5222611, + -0.26985842, + -0.5107282, + 0.23903611, + 1.422034, + 0.59356016, + -0.0804681, + 0.07651371, + 0.47739923, + -1.4049715, + 0.057487257, + 0.65835726, + 0.012012005, + -0.83520705, + 0.14005867, + 0.3179408, + 0.09793091, + 0.43227002, + 0.24015082, + -0.74180096, + 1.2195641, + 0.27990267, + 0.20510876, + -0.26877096, + -0.023211706, + 0.031025935, + -0.7453047, + 0.43501896, + -0.45996207, + -0.14313409, + 0.13326743, + 0.122960486, + 0.72335243, + 0.6529524, + -0.59417254, + 0.5511575, + -0.606183, + -0.08331241, + -0.047018968, + 0.20930567, + 0.53218025, + -0.53194004, + -0.8049671, + -0.30903393, + -0.5984673, + -0.87982637, + 1.162206, + 0.71807724, + -1.0396767, + 0.38749945, + 0.9213603, + -0.054405376, + -0.47395605, + -0.42909703, + 0.17345208, + -0.13005951, + -0.91845477, + 0.28418788, + -0.6736643, + 0.21831436, + 0.26330477, + 0.40875673, + -0.636742, + 0.08652145, + -0.21403389, + -0.52358896, + 0.033423707, + -0.18996708, + -0.29703385, + -0.30813947, + 0.35787016, + 0.44168937, + 0.31971094, + 0.7259261, + -0.3958075, + -0.3152674, + 0.49230948, + 0.0063293837, + 0.20789315, + -0.001784265, + 0.29177412, + -0.7019365, + 0.30329597, + -0.38417867, + -0.029093584, + -0.30668706, + 0.31243366, + 0.4280067, + -0.6526408, + -0.06755851, + -0.53404266, + 0.013171971, + 0.88783205, + 0.1785952, + 0.19072059, + 0.78968906, + 0.3790344, + 0.27641153, + -0.70200235, + -0.3149432, + -0.6056072, + -0.84975773, + -0.18786192, + 0.32024395, + 0.19375575, + 1.1661772, + 0.15194057, + 0.36783332, + 0.79111534, + -0.32413408, + -0.051064067, + 0.17450851, + 0.5964902, + -0.37797788, + -0.21126439, + 0.022742009, + -0.048503, + -0.18102294, + 0.0601886, + -0.703537, + 0.66364837, + -0.2881683, + -0.108233154, + 0.27691418, + 0.33392403, + 0.11869593, + -0.5493283, + -0.0894763, + -1.294402, + -0.3414066, + -0.27450776, + -0.51224303, + 0.13566503, + 0.07402909, + -0.049980983, + -0.83780164, + -0.0890995, + -0.70201594, + 0.13779654, + 0.5264545, + 0.5073055, + -0.21666935, + -0.39014325, + 0.31095043, + -0.7438618, + 0.29784217, + 0.69888926, + 0.017548501, + 0.4117448, + 0.32664767, + 0.32981226, + 0.078561135, + -0.19950867, + -0.002681531, + 0.102622524, + -0.12783173, + 0.54124886, + 0.6291374, + -0.12358592, + 0.32964104, + 0.13895114, + 0.19255789, + -0.12321177, + 0.52333534, + 0.34103125, + 0.16730158, + 0.058574907, + 0.12774754, + 0.42483726, + -0.08132103, + -0.3200609, + -0.7567713, + 0.41511407, + 0.1708309, + 0.1025504, + -0.48109135, + 0.19218239, + -0.38762102, + -0.102074854, + -0.7044278, + 0.56144935, + 0.12716034, + 0.27252367, + -0.2139098, + -0.066363454, + -1.1736205, + -0.2802698, + -0.22540188, + 0.21006158, + 0.17829902, + 0.72439, + 0.21021278, + 0.35163194, + -0.056796525, + -0.1269753, + -0.18157396, + -0.71756333, + 0.031683877, + -0.3434423, + -0.598749, + 0.14107509, + -0.29693985, + -0.43832842, + -0.059731647, + 0.08904247, + 0.61394, + -0.0838373, + -0.65991485, + -1.2238059, + 0.23648846, + 0.03387013, + 0.11243858, + 0.023466371, + -0.09593597, + -0.6864304, + 0.18768376, + -0.17367233, + 0.28258383, + 0.43573853, + -0.24848267, + 0.017208412, + -0.046796765, + 0.018522283, + 0.021396523, + 0.09836509, + 0.025008135, + -0.40591666, + -0.24485458, + 0.074191056, + -0.3331389, + -0.34930742, + -0.026469618, + -0.41349953, + -0.2227197, + -0.20958076, + 0.14334382, + 0.07906173, + -0.22607258, + -0.47139344, + -0.75067025, + 0.17725228, + -0.2102774, + 0.016074236, + -0.5525872, + -0.34262723, + -0.2441841, + 0.49715126, + -0.5536491, + -0.18942142, + -0.08239488, + 0.10202718, + -0.49043137, + 0.88622165, + -0.9687871, + -0.002789721, + -0.08630055, + 0.22932094, + 0.36614913, + 0.14315657, + 0.1538178, + 0.5969062, + -0.19250105, + -0.15922464, + -0.2787053, + -0.17668377, + -0.7815433, + -0.30326504, + 0.22024523, + 0.24654049, + -0.17198735, + 0.08279521, + -0.16834009, + 0.043088797, + 0.4947298, + 0.48330033, + 0.04125823, + 0.5718062, + 0.03208746, + -0.32252723, + 0.16103064, + 0.018203441, + -0.6684262, + 0.63778114, + -0.6551296, + 0.42231315, + -0.27447233, + 0.36926755, + 0.089495815, + -0.055379987, + -0.27263555, + -0.02256975, + -0.08435048, + 0.6765057, + 0.23670562, + -0.13063307, + -0.048927642, + -0.47157368, + 0.3965791, + 0.23284623, + 0.37888426, + -0.51772463, + 0.019191451, + -0.09482032, + -0.27823257, + 0.35757717, + -0.23356418, + 0.23155713, + -0.46556854, + 0.16885874, + -0.2880992, + 0.4973876, + -0.29026052, + -0.21655911, + 0.062124982, + -0.20573136, + 0.2527937, + -0.13039246, + -0.7937051, + -0.26568645, + 0.35998383, + -0.30379876, + -0.8802005, + 0.3547319, + -0.12155091, + -0.3424648, + 0.45667523, + -0.35960063, + -0.11347298, + 0.08070199, + -0.14447361, + -0.22475232, + 0.49468458, + -0.98781097, + -0.032633085, + -0.113064155, + 0.3326771, + 0.083323255, + 0.5740593, + 0.6151245, + 0.14748676, + -0.4625596, + 0.054103106, + 0.00612098, + -0.21667904, + 0.47247708, + -0.15249538, + 0.39002776, + 0.5042389, + -0.38091004, + -0.28585204, + 0.41349906, + -0.038335636, + -0.31172526, + 0.8728566, + 0.22483101, + -0.12816137, + 0.38061374, + -0.10367331, + 0.0602383, + 0.086044684, + -0.69242626, + 0.011308499, + -0.38706124, + 0.20421976, + -0.5877696, + -0.31531242, + 0.10545086, + -1.2100762, + 0.09915966, + 0.6324105, + 0.08729786, + 0.57330364, + -0.5215086, + -0.023544872, + -0.36918288, + -0.04798453, + 0.28496733, + 0.31171122, + -0.3304602, + 0.31413037, + 0.086523265, + -1.4346424, + 1.0745457, + 0.84248215, + -0.0027363896, + 0.4413573, + 0.011791632, + -0.5304562, + -0.037899002, + 0.34071118, + 0.06376809, + -0.10315236, + 0.2645282, + -0.6132711, + 0.17895767, + 0.5851486, + 0.13757055, + 0.40451694, + 0.14378902, + -0.2434611, + -0.27724555, + 0.80522466, + 0.0649, + 0.25204164, + 0.02592846, + -0.6843663, + 0.078876175, + 0.0043817125, + 0.38159028, + -0.021487236, + -0.5737401, + 0.103462696, + 0.0543036, + 0.2914808, + -0.41305095, + -0.32963157, + 0.2098634, + 0.056027137, + -0.47111607, + -0.36654764, + 0.14456964, + -0.5093298, + 0.8900198, + -0.19305447, + -0.96117336, + 0.18935205, + -0.928981, + 0.7716763, + 0.7662021, + 0.6457118, + 0.09260677, + 0.106472135, + -0.08434531, + 0.5028472, + 0.78250176, + 0.16174524, + -0.2380994, + 0.1886342, + -0.21258155, + 0.98121953, + 0.34688097, + 0.18625589, + 0.26240742, + -0.73515314, + 0.028863348, + -0.38860252, + -0.64968395, + 0.3433439, + -0.18288556, + -0.16227485, + -0.39645657, + 0.349998, + -0.48563296, + 0.1079644, + 0.9155354, + -0.8223966, + 0.19088572, + 0.1950828, + 0.49994946, + 0.27959555, + 0.49863058, + 0.9417961, + 0.5702498, + -0.47985402, + 0.6176149, + 0.45039696, + 0.09334664, + -0.44177893, + 0.0019241218, + 0.27819854, + -0.31018457, + 0.34964728, + 0.18240361, + -0.44426134, + -0.032785863, + -0.48240745, + 0.6133015, + 0.10592939, + -0.12046972, + 0.05160539, + 0.3552714, + -0.09037112, + -1.068445, + 0.14118654, + -0.64814055, + 0.25556, + 0.38207415, + 0.0035322309, + 0.16964313, + 0.677953, + 0.23014174, + 0.24658106, + -0.11267711, + -0.55447507, + -0.119067684, + 0.54224116, + 0.31565383, + 0.5244208, + -0.83387357, + 0.40948436, + -0.3378592, + -0.33543268, + 0.042933535, + 0.104173556, + -0.6271039, + 0.21138573, + 0.38814163, + -0.09056228, + -0.3124646, + -0.30543572, + -0.12258975, + 0.16647546, + -0.1406545, + 0.8662054, + 1.0453173, + 0.5223655, + 0.14587998, + -0.95245034, + -0.39321125, + -0.11832072, + 0.45038953, + 0.18365487, + -0.20192692, + -0.46909228, + -0.16791905, + 0.13341409, + -0.2960372, + 0.17926578, + -0.8761651, + 0.19807526, + 0.041413892, + -0.13154015, + -0.33472893, + 0.20185846, + 1.0542618, + 0.17828444, + 0.09722105, + -0.4392705, + 0.0077023515, + 0.17092955, + 0.34391454, + 0.5730579 + ], + "2025-05-20T05:33:10.31409", + "2025-05-20T05:33:10.31409", + -25.5066947937, + -14.3198242188, + 103.6369628906, + "4", + "ID: 13438939
Cluster: 4
Chunk: Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x..." + ], + [ + 11709, + "Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.\n\n\uf0fe Wahl des Startsimplex hat Einfluss welches lokale Minimum\ngefunden wird\n\uf0fe Wahl des Startsimplex beeinflusst Konvergenz\n\uf0fe Fehlender Konvergenzbeweis\n\uf0fe Z.B. Stagnation um nicht-optimalen Punkt\n\uf0fe rauschempfindlich7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill-Simplex mit Zielfunktion mit additivem Rauschen s:\nMin [ f(x) + s ], x in RN\nBeispiele\n\uf0fc Double Precision Numerik: \u03c3 \u2248 10-16,\ns\n\uf0fc FEM-Simulation: \u03c3 \u2248 10-3 - 10-6.\n\ns\nBest-Practice\n\uf0fc Anwender (Sie!)\n\nm\u00fcssen das Rauschlevel kennen.\n\n\uf0fc Toleranzen (ftol, xtol) an das Rauschlevel anpassen.\n\n257.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nNichtlineare Regression mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.2\nNichtlineare Gleichungen l\u00f6sen mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.3\nSchnittpunkte zweier Kreise:\n- M1: Kreis um (1,2) mit Radius 3,\n- M2: Kreis um (2,0) mit Radius 2.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\n267.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIhre Aufgaben ist es einen Satelliten am Ort (x,y) so zu\npositionieren, dass er sich im Gravitationsfeld der 3\nM3 M1 Planeten nicht bewegt.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\nM2\n277.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 2 linearen\nUngleichheitsbedingungen\nMin [ x 2 + x 2 ]\n1 2\nx + x \u2265 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n287.", + 18240, + 10468137, + null, + "md", + null, + [ + -0.8539323, + -0.3307703, + -0.12917906, + -0.9902739, + -0.6676355, + 1.2118105, + 0.029592108, + 0.22852649, + -0.17469743, + -0.2932766, + -0.4693811, + -0.11940551, + 0.7137473, + 0.2901251, + 0.11043404, + 0.908476, + 0.36449328, + 0.45342174, + 0.025286831, + -0.7366027, + 0.21817313, + 0.121300094, + -0.063033216, + 0.6805244, + -0.056355156, + 1.1634629, + -0.07685873, + 0.15959877, + 0.50525665, + 0.29150793, + -0.25445172, + -0.6690671, + -0.20523512, + -0.82977104, + 0.3563352, + -0.22521439, + -0.055333816, + 0.10446757, + -0.66474366, + 0.2739571, + -1.2048552, + 0.71865845, + 0.7710559, + -0.5285966, + -0.37474403, + 0.62919843, + 0.21234348, + -0.8845423, + 0.34341902, + -0.5314544, + -0.55283594, + 0.5398582, + 0.1483026, + 0.08643797, + 1.0448908, + -0.6574854, + -0.052272893, + -0.17243429, + 0.1937595, + -0.26126102, + 0.0018535145, + -0.3073746, + -0.41983935, + -0.18200193, + 0.38417354, + 0.16707216, + 0.24584267, + -0.587863, + 1.2997599, + -0.10888686, + -0.060016632, + -0.08661074, + 0.267574, + -0.704792, + -0.4264942, + 0.056719884, + 0.33332884, + -0.05404637, + 0.030310921, + -0.66497105, + -0.13663104, + -0.15877385, + -0.57147807, + -0.20301479, + -0.04582368, + 0.14640829, + 0.12857454, + 0.25900522, + 0.4936216, + -0.8481777, + 0.28817445, + 0.064124696, + 0.308181, + -0.18608971, + 0.57060826, + 0.3012161, + -0.37862927, + -0.48801196, + 0.7178086, + -0.17961763, + -0.40522397, + 0.6990168, + 0.0657973, + -0.11710049, + -0.0011175182, + 0.12663013, + -0.5562408, + 0.29009256, + -0.41211224, + 0.10546668, + 0.30870074, + -0.9476551, + -0.25377896, + 0.046802565, + 0.516503, + -0.4708044, + -0.6607292, + 0.14340347, + -0.008903671, + -0.13664433, + 0.62353945, + 0.62722576, + 0.40940917, + -0.48435742, + 0.3643537, + 0.34011084, + 0.35744524, + -0.1707079, + -0.47676253, + -0.027979672, + -0.20821664, + 0.7428249, + 0.27519116, + -0.30784094, + 0.17479691, + -0.014693338, + 0.1411259, + 0.39841288, + 0.79728043, + -0.3491399, + -0.40213922, + -0.023051064, + -0.7960245, + -1.1290884, + 0.8073704, + -0.10773207, + 0.5747593, + 0.5743768, + -0.012330806, + -0.18897803, + -0.29474765, + -0.28917527, + -0.22540466, + 1.1526271, + -0.26830465, + 0.31087938, + 0.57019883, + 0.50171554, + 0.27794668, + -0.33585072, + -0.46899793, + -0.15659447, + -0.3947235, + 0.55163974, + 0.31508547, + 0.11217903, + -0.048128955, + 0.4202875, + 0.9236831, + -0.6605115, + 0.05304746, + 0.15674524, + 0.41011816, + -0.37552556, + -0.33173123, + 0.6716921, + 0.2558303, + -0.4818378, + 0.18594816, + 0.0007131919, + 0.41329402, + 0.17399296, + -0.47084534, + -0.17998151, + -0.34639797, + -0.013318166, + 0.56613696, + -0.5874696, + 0.20158185, + 0.775353, + -0.25868744, + 0.4274549, + -0.077302046, + -0.12218476, + -0.35930172, + 0.38415802, + -0.5625155, + -0.25774255, + -0.7325902, + -0.07573832, + 0.4881325, + -0.17410725, + 0.113852486, + -0.51690894, + -1.1485411, + -0.13748063, + 0.07226144, + -0.438347, + -0.6821974, + 0.28296417, + 0.15697421, + -0.76283795, + 0.10213634, + 0.13776281, + -1.0331091, + 0.2651925, + -0.3273425, + -0.32598922, + -0.89425045, + 0.42123505, + 0.3685753, + -0.2249591, + -0.11343601, + -0.13806412, + 0.1803881, + -0.035908714, + 0.11074939, + 0.35891697, + 0.24697809, + 0.67905563, + -0.46093196, + -0.0006635301, + -0.93066126, + -0.5365966, + -0.70628923, + -0.02438766, + 0.49086237, + 0.97896796, + -0.3070281, + -0.22930408, + 0.08843623, + -0.16792898, + -0.13884707, + 0.19552639, + -0.0054828264, + -0.47570893, + 0.1002188, + -0.18127248, + -0.1659772, + -0.029073749, + 1.0081661, + -0.7932603, + -0.1398586, + 0.43807134, + 0.055818368, + 0.10311201, + -0.3436117, + 0.43811664, + -0.3337317, + -0.4697453, + -0.09803013, + 0.050909538, + 0.6488485, + 0.4691379, + -0.07474828, + 0.51605666, + 0.021235768, + -0.20607299, + -0.03636157, + 0.37672293, + -0.6621385, + -0.39643347, + 0.0284052, + 0.011475243, + -0.38171962, + 0.10258137, + -0.42724732, + 0.3204122, + -0.38582945, + 0.022227645, + 0.53133196, + -0.038270857, + 0.019247912, + -0.5201451, + -0.096027754, + 0.63741094, + -0.4234219, + 0.11903067, + 0.30968446, + 0.7273011, + -0.09628929, + 0.2104124, + 1.7123475, + 0.29152635, + -0.39565703, + 0.4309969, + 0.27129102, + 0.027772307, + -0.012917746, + -0.13817286, + 0.21852678, + 0.4427994, + 1.0466827, + 0.24490747, + -0.13999616, + 0.29003304, + 0.29087174, + 0.31205013, + -1.1982964, + 0.5554931, + -0.3398022, + -0.24828468, + 1.0044819, + -0.018342126, + 0.12007397, + 0.22041944, + 0.16844928, + -0.03415539, + -0.122829184, + -0.0946976, + -0.22604668, + 0.36866996, + -0.48646772, + -0.5032041, + -0.54520965, + -0.039527424, + 1.1881297, + -0.75655437, + -0.36670423, + 0.46194798, + -0.7714345, + 0.10680521, + 1.0212977, + 0.64594954, + -0.1603657, + -0.75962853, + 0.088238984, + 0.12746783, + -0.34640595, + -0.111966506, + -0.5498046, + 0.47423226, + 0.6737331, + 0.81994224, + -0.15194172, + -0.9810642, + 0.6281481, + 0.2638703, + 0.34571162, + -0.07662763, + 0.08777786, + 0.089661, + -0.2738688, + -0.02496216, + 0.08768957, + -0.025267363, + 0.4369758, + -0.3054504, + -0.7089642, + -0.052577622, + -0.36445695, + -0.31912082, + 0.029207751, + 0.2231015, + -0.05916048, + 0.32243025, + 0.09068123, + 0.25242484, + -1.0004787, + -0.4810502, + -0.4497958, + -0.17003125, + 0.19690004, + 0.46112937, + -0.70414835, + -0.954975, + -0.531729, + 0.23604356, + -0.17421484, + 0.5195362, + 0.32563728, + -0.6052952, + -0.034563992, + 0.6952429, + -0.12622835, + 0.3757859, + 2.210436, + 0.05575467, + -0.21591124, + 0.48180717, + -0.24929328, + -0.009028427, + -1.0700771, + 0.9492843, + -0.4551821, + -0.11906175, + 0.011096896, + 0.23998976, + 0.5420355, + -0.541951, + -0.11319184, + 0.33359554, + 0.0067634284, + -0.17258698, + -0.25769466, + -0.11171642, + -0.053563103, + 0.3705832, + 0.2992101, + -0.18909258, + 0.32066053, + 0.06419146, + 0.33446407, + -0.14366686, + 0.5514692, + -0.2767424, + -0.011084981, + 0.74445415, + 0.04612382, + 0.024323262, + 0.49389562, + 0.12573642, + 0.09823174, + 0.21492262, + 0.09247469, + -0.18888505, + -0.29879305, + -0.19315186, + -0.15440288, + -0.063416995, + 0.30787528, + -0.38133115, + -0.6392689, + 0.4884597, + -0.21302314, + 0.14290631, + 0.22060981, + -0.17246923, + 0.5647294, + -0.952493, + 0.27725315, + -0.4761065, + 0.20459834, + -0.9706806, + 0.18279941, + -0.16547751, + -0.29651493, + 0.9360133, + -0.29710135, + 0.30295104, + 0.021210246, + 0.1265139, + -1.025202, + -0.00423479, + -0.32674876, + -0.0045534503, + 0.012643382, + -0.17434269, + 0.82136047, + 0.20685478, + -0.17122549, + -0.23198067, + 0.038438853, + -0.020254105, + 0.2264987, + -0.5891883, + 0.41899672, + 0.47540382, + 0.09821603, + -0.6208373, + -0.05333429, + -0.30125338, + 0.6349436, + 0.3263192, + 0.17828625, + -0.5503541, + -0.20873262, + 0.13530502, + -0.28734863, + -0.012235507, + 0.6608583, + 0.43597317, + 0.23524818, + -0.7935008, + 0.66546136, + -0.35884187, + -0.12345234, + 0.1361944, + -0.82158834, + -0.09604049, + 0.31083137, + -0.27783045, + 0.2291076, + -0.14838076, + 0.10377172, + -0.8920105, + -0.16834962, + 0.32825252, + 0.35769495, + 0.21138068, + -0.36266732, + -0.6994964, + 0.59414804, + -0.18047675, + 0.8896697, + -0.932381, + 0.41734526, + -0.22673348, + -0.3478503, + -0.82368726, + 0.37821192, + 0.23006038, + 0.56045026, + 0.15717992, + 0.18756339, + 0.4392076, + 0.37728527, + 0.74689555, + 0.2711612, + -0.0107919015, + 0.4081654, + -0.2302883, + -0.6257982, + -0.3955772, + 0.0720519, + -0.23252282, + -0.30029458, + -0.1256409, + -0.033585265, + -0.2892841, + -0.7019023, + 0.21407972, + 0.4948519, + -0.34811056, + -0.35162103, + 0.5198878, + -0.5156027, + -0.054893225, + -0.5352376, + -0.3290039, + 0.0044410303, + 0.15053213, + 0.51284194, + 0.68666065, + 0.16754827, + -0.20434666, + 0.61329836, + -0.37491137, + 0.13694091, + -0.25655106, + -0.5891634, + -0.6456966, + -0.20287995, + 0.07054655, + -0.41948473, + -0.82718194, + -0.02633674, + -0.32714024, + 0.14060801, + -0.224685, + 0.30559784, + 0.0027803853, + 0.23669116, + -0.35289177, + 0.8975639, + -0.21738997, + -1.0228249, + 0.07177607, + 0.027710877, + 0.48485088, + -0.56254023, + -0.25009972, + -0.055140972, + -0.29248986, + 0.5119693, + 0.7629399, + 0.21801546, + 0.22889154, + 0.24045353, + 0.042715732, + -0.81041133, + 0.36119652, + 0.15088333, + -0.23406988, + 0.8263721, + 0.10161446, + -0.0286174, + -1.013361, + 0.0003558434, + -0.094068766, + 0.1915522, + 0.009240007, + 0.16866004, + 0.122570336, + -0.26186597, + -0.2552872, + -0.015016392, + 0.08968281, + -0.36750963, + -0.042740975, + 0.13635609, + 0.14577833, + -0.0018900186, + -1.0160899, + 0.036228113, + 0.0360646, + 0.13371255, + 0.22093202, + -0.18241423, + 0.13462572, + -0.21801919, + -0.6632644, + 0.026182778, + 0.31401616, + 0.24546833, + -0.34779152, + 0.040351465, + 0.34583205, + 0.054369178, + 0.055393714, + 0.08294205, + 0.4134052, + 0.081470616, + 0.14861283, + 0.27115917, + 0.18866162, + 0.16845837, + -0.021494392, + 0.099451095, + 0.07424253, + 0.95509243, + -0.25892913, + 0.25775316, + 0.38492036, + -0.013016466, + 0.24116403, + -0.13615704, + 0.05505497, + 0.34371993, + 0.23904353, + -0.026003577, + -0.7104476, + 0.19803251, + 0.26665705, + -0.8165034, + 0.35992035, + -0.16680469, + -0.12579165, + -0.25848532, + 0.333437, + 0.025177982, + 0.54053015, + -0.22570892, + 0.09275298, + 0.25448912, + 0.13054141, + -0.2504904, + 0.65355086, + 0.111077905, + -0.89662915, + -0.18503861, + -0.1598213, + 0.09600135, + 0.07544291, + 0.17908715, + 0.45135447, + -0.014711715, + -0.2550139, + -0.17830606, + 0.074247524, + 1.2081397, + -0.46689355, + 0.83391845, + -0.0044292435, + 0.059199993, + 0.020237623, + -0.29666564, + 0.25264922, + -0.7275058, + 0.5693076, + -0.42580548, + -0.5936979, + -0.23509559, + 0.3380488, + -0.21339679, + -0.8561462, + -0.010283865, + 0.27283502, + -0.28172326, + -0.45496535, + -0.60595846, + 0.26207897, + -0.16874057, + 0.5199169, + -0.47076005, + -0.010878742, + -0.21448271, + -0.35704887, + 0.35907978, + 0.012331411, + -0.4195977, + 0.45830023, + -0.712868, + 0.090470836, + -0.37428328, + -0.6885767, + 0.17281593, + 0.71904624, + -0.6291649, + 0.027349655, + 0.63686544, + 0.26528955, + -0.6863695, + 0.4341926, + -0.25721896, + 0.35229698, + -0.9061378, + 0.13891628, + 0.0949385, + -0.07906965, + -0.708987, + -0.5152282, + 0.99203545, + -0.69226795, + -0.13550156, + -1.044257, + 0.1306884, + -0.43655202, + 0.072960645, + -0.15455963, + 0.3981174, + 0.09782165, + 0.43952686, + -0.5311164, + 0.018301092, + 0.06927353, + -0.07306424, + -0.46071357, + -0.21516946, + 0.4504313, + 0.3953615, + -0.25762764, + 1.3180257, + -0.6727208, + 0.24842943, + 0.5909595, + 0.20929565, + -0.31214345, + -0.8138272, + 0.2508304, + -0.14077395, + 0.09348574, + 0.4390254, + -0.06093407, + -0.31585816, + 0.47952282, + -0.026074342, + 0.33190444, + 0.25328937, + -0.04103063, + -0.4574495, + 0.32518375, + -0.09280743, + -0.4933892, + 0.3822643, + -0.96908087, + -0.06862748, + 0.25046936, + 0.122330815, + 0.012352629, + -0.6950765, + -0.010044392, + -0.510493, + 0.22464427, + -0.031305045, + 0.60303587, + -0.041433718, + 0.49063748, + -0.23677336, + -0.42168263, + 0.17090912, + -0.115027994, + -0.36493713, + 0.4284914, + 0.61894584, + 0.8096411, + 0.25358936, + -0.06364979, + 0.5419338, + -0.355439, + 0.14945783, + -0.52066106, + -0.10302207, + -0.17608032, + 0.30358034, + 0.13875003, + -0.92178655, + 0.47635734, + -0.27064168, + -0.09240817, + 0.16573635, + 0.098099686, + -0.53834814, + -0.16004665, + -0.14474769, + -0.15828626, + 0.17819116, + -0.19228017, + -0.2808586, + -0.26726532, + -0.0784762, + 0.46395785, + -0.06449352, + 0.9677993, + 0.5073941, + -0.06740641, + -0.23361844, + -0.12698081, + -0.3789773, + -0.35317147, + 0.079996295, + -0.23919804, + -0.4674, + 0.29450154, + 0.6108493, + 0.7914115, + 0.38596317, + -1.7401052, + 0.14437976, + -0.116127826, + -0.8036505, + 0.35684612, + -0.48441285, + -0.52011204, + 0.012298875, + 0.5166489, + -0.16617712, + 0.24665621, + -0.71546894, + 0.08881588, + -0.34679535, + -0.20071504, + -0.15859972, + 0.23782808, + -0.30312216, + 0.68573743, + 0.042305555, + 0.73770624, + 0.5338654, + -0.3809266, + 0.55638367, + -0.22498071, + 0.03636074, + 0.0626437, + 0.18838617, + 0.07567531, + -0.060166974, + -0.0295854, + 0.35850775, + 0.572571, + 0.24513787, + -0.051831484, + 0.1213973, + -0.112081885, + 0.34386083, + 0.058734886, + 0.2123028, + -0.055206463, + -0.17410697, + 0.60592633, + 0.05375205, + 0.15969065, + 0.15879674, + -0.102624334, + -0.126789, + 0.13526292, + 0.43777296, + 0.8610023, + 0.17073205, + -0.7510893, + 0.32480875, + -0.08541776, + -0.69455945, + -0.1597112, + -0.1819969, + -0.300733, + 0.11109846, + -0.13106734, + 0.08822577, + -0.37106177, + -0.4596391, + 0.03113477, + 0.30333388, + -0.5363646, + -0.14879338, + 0.33768055, + -0.1673053, + 0.06134403, + 0.35559994, + 0.06956534, + 0.15744735, + -0.30650443, + -0.13260618, + -0.015691921, + 0.3035733, + -0.10864216, + -1.006285, + -0.1242965, + -0.024743553, + 0.345779, + 0.95479035, + 0.7164414, + 0.39680153, + -0.10696702, + 0.33961576, + 0.15845573, + -0.2561929, + 0.4507866, + -0.28375417, + -0.266434, + 0.42573124, + 0.7140197, + 0.26412898, + -0.47233257, + 0.0609061, + -0.50316334, + 0.2650919, + 0.06679402, + -0.2051391, + 0.6297936, + 0.60798323, + 0.15328749, + -0.25645483, + -0.054280363, + -1.0851399, + -0.1001866, + 0.8691568, + -0.29896885, + 0.123388745, + -0.05633694, + 0.72462285, + 0.5712875, + 0.34482017, + 0.7591493, + 0.07931421, + -0.35412273, + 0.04981621, + -0.16635787, + -0.122769974, + -0.19719625, + 0.37630862, + 0.5441583, + -0.5635314, + -0.24857077, + 0.5087845, + -0.74433756, + 0.18029757, + 0.7445892, + 0.2758112, + -0.35397243, + 0.18015525, + -0.2172335, + -0.32496712, + -0.29521513, + 0.028378956, + -0.07124542, + -0.18528622, + -0.06909378, + -0.49163026, + -0.3099196, + 0.15995672, + 0.07900701, + -0.28048903, + -0.31614363, + 1.0528697, + 0.07577979, + 0.04577537, + -0.22928427, + 0.1569011, + 0.16317523, + 0.75248605, + -0.04671375, + -0.95274043, + 0.002933597, + 0.32739845, + -0.2379204, + -0.1554988, + -0.68585736, + -1.0556097, + -0.12285259, + 0.107579544, + -0.61704475, + 0.08091177, + 0.15216963, + 0.32288483, + -0.43015283, + -0.33495352, + 0.3046965, + -0.72467655, + -0.23765421, + 1.0631155, + -0.005374402, + -0.43808755, + -0.8345298, + -0.002856329, + -0.06577439, + 0.08860563, + 0.25293908, + -0.041033566, + 0.49888036, + -0.77757144, + 0.5774645, + 0.14536951, + 0.2508913, + 0.6025641, + -0.12386325, + 0.41703787, + 0.19879758, + -0.11734441, + 0.024749324, + -0.058259107, + 0.27312505, + 0.4034993, + -0.25216144 + ], + "2025-05-20T05:33:30.282638", + "2025-05-20T05:33:30.282638", + -53.5251121521, + -78.3175201416, + -78.8380432129, + "3", + "ID: 10468137
Cluster: 3
Chunk: Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Qu..." + ], + [ + 11711, + "mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n\n\n327.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nAusserdem ist die Richtung des Gradienten bei nicht-isotropen Minima (dies ist die Regel) schlecht.\n\nisotrop: Gradientenrichtung gut nicht-isotrop: Gradientenrichtung schlecht\n.\n\nDies f\u00fchrt zu dem \u00abklassischen\u00bb Zig-Zag-Routen, die nicht erw\u00fcnscht sind.\n\n337.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nIdee einer SEHR einfachen Schrittweitensteuerung:\nFalls Schrittweite zu gross: Reduziere Schrittweise iterativ um die H\u00e4lfte, so lange bis f < f .\n\nn+1 n\nFalls Schrittweite evtl zu klein: Verdopple Schrittweite so lange bis f < f , dann reduziere Schrittweite noch 1-mal.\n\nn+1 n\n\uf0e0 test_Steepest_Descent.py\n\uf0e0 \u00dcbung 7.7.2\n34\u00dcbungen\n35\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\n36\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,", + 18240, + 4051675, + null, + "md", + null, + [ + 0.21610712, + -0.34170783, + -0.2582149, + -0.13907842, + -0.61066616, + 1.0078603, + -0.3240201, + 0.6873087, + -0.29100716, + 0.42602944, + -0.19834957, + 0.07046136, + 0.19968116, + 0.05360639, + 0.4098373, + 0.8089135, + 0.38811648, + 0.020720284, + -0.29712686, + 0.09276265, + 0.24396716, + 0.49379405, + 0.14850694, + 0.8405345, + -0.42497858, + 0.54847485, + 0.5315522, + 0.2563539, + 0.3031277, + 0.32693532, + -1.0098323, + -0.54120606, + 0.2183274, + -0.36752322, + -0.03983044, + -0.3212026, + 0.4653786, + 0.6545438, + -0.20859239, + 0.24754442, + -0.26476225, + 0.20086898, + 0.27902398, + 0.30439684, + -0.511996, + 0.48540705, + -0.2720875, + -0.27440175, + 0.54314584, + -0.82200634, + -0.19053495, + 0.029926717, + 0.398478, + -0.5969824, + 0.37821722, + -1.0161233, + 0.11919589, + -0.0028134063, + -0.2873751, + 0.43212482, + 0.050068364, + -0.09143582, + -0.02543508, + -0.29476294, + 0.49181077, + -0.7949642, + 0.8474369, + -0.45979714, + 0.1913284, + -1.1775037, + -0.13730288, + 1.1601539, + -0.17315605, + 0.06397681, + 0.4084017, + -0.3379514, + -0.042783346, + 0.1312747, + -0.5110681, + 0.5032175, + 1.011381, + -0.35415074, + -0.29897973, + 0.3352387, + 0.046979457, + 0.9281235, + 0.7794734, + 0.979208, + -0.62746745, + -0.06440086, + 0.02056218, + 0.4631862, + -0.41932887, + -0.14032038, + 0.4387039, + 0.31654036, + -0.21557382, + 0.23203044, + 0.6833416, + 0.7943702, + -0.3042444, + 0.19797122, + 0.96993744, + -0.9783734, + 0.46330336, + -0.046329584, + -0.46998185, + -0.23301779, + -0.58868104, + 0.21932237, + 0.69747776, + -0.6695301, + -0.5490598, + 0.20945036, + 0.4844848, + -0.46872902, + 0.47233516, + 0.02829311, + -0.16637819, + 0.15635177, + -0.37190187, + -0.9155665, + 0.04265388, + 0.06619617, + 0.6524881, + 0.5039427, + -0.04062849, + -0.25350952, + 0.3672974, + 0.27789792, + 0.2866974, + -0.64593893, + 0.7398978, + -0.68064785, + 0.2511096, + -0.6026129, + -0.24463147, + -0.20240761, + -0.11480774, + -0.4233029, + -0.5244546, + -1.3436545, + -0.045248013, + -0.7590879, + 1.0389054, + 0.24050002, + 0.02171108, + 0.5076742, + 0.35538733, + -0.2934364, + -0.36472857, + 0.090743154, + 0.26938072, + 0.92038983, + -0.25277385, + 0.07719758, + 0.34196678, + -0.07766472, + 0.18402007, + -0.17247602, + 0.45100924, + -0.4953551, + -0.6399714, + -0.12482366, + 0.50583816, + 0.17909491, + -0.31236172, + -0.5700879, + 0.8142332, + 0.081353895, + 0.6612395, + -0.31171215, + 0.6694775, + 0.18347411, + 0.6949669, + -0.08658582, + 0.81987506, + 1.4820253, + 0.4921878, + -0.40194663, + 0.42631844, + 0.25177687, + -0.49247232, + 0.4686098, + -0.884753, + 0.25234473, + 1.2933986, + -0.049991243, + -0.18223089, + 0.44750527, + 0.044140544, + -0.13212512, + 0.03908568, + 0.22012796, + -0.30675158, + 0.08215075, + -0.9997249, + 0.46272606, + -0.057759956, + 0.46804577, + -0.65390915, + 0.18121451, + 0.18792771, + -0.3917414, + -0.58103204, + -0.106285244, + -0.43567497, + 0.0029532826, + -0.5842319, + 0.7649751, + -0.15150426, + -0.14852601, + -0.41726714, + 0.45418084, + 0.65493613, + -0.2777432, + 0.5461147, + -0.91013145, + 0.10615094, + 0.57800585, + 0.43953797, + 0.52388126, + 0.59976745, + -0.3265308, + 0.06088296, + 0.024082754, + 0.27500105, + 0.78999335, + 0.81131923, + -0.34176257, + -0.41218174, + -0.48943624, + -0.5650195, + -0.09200231, + -0.7478293, + -0.49558005, + 0.5952393, + -0.11126892, + -0.39854655, + -0.02397759, + 1.0572264, + -0.10263875, + -0.18896714, + -0.7087554, + 0.42055285, + -0.005795934, + 0.0016986951, + -0.5826482, + 0.17145146, + 0.04782698, + 0.008605219, + -0.33104646, + 0.31809986, + 0.6931411, + -0.059445824, + -0.35173127, + 0.33814853, + 0.71478164, + -0.8456227, + 0.18025818, + -0.59973043, + -0.6825434, + 0.15589005, + -0.28807, + -0.1170959, + 0.6949042, + 0.32213587, + 0.30828536, + -0.56129205, + 0.22549807, + -0.2769241, + 0.8331133, + -0.63590044, + 0.3773966, + -0.40455693, + -1.0846455, + -0.31960315, + -0.012908582, + 0.8286142, + -0.42579967, + 0.07487789, + -0.491373, + -0.11581444, + -0.018495994, + -0.49328724, + 0.07291444, + -0.1354525, + 0.6570908, + 0.018441334, + -0.7136275, + -0.394664, + -0.7392031, + -0.33123988, + 0.18986902, + -0.44218844, + -0.03672663, + 0.19268346, + 0.07882285, + -0.12050502, + -0.4031803, + 0.48461413, + -0.5274426, + -0.3404508, + -0.74830246, + 0.6537432, + -0.20468289, + 0.09166819, + -0.121248245, + -0.7021304, + 1.00578, + -0.72209996, + -0.6414535, + 0.58992034, + 0.22223103, + 0.632037, + 0.08978217, + 0.5589308, + 0.35982734, + -0.9687631, + 0.34386966, + -0.32487908, + -0.034297094, + 0.41395962, + -0.3107426, + -0.13023803, + -0.4908955, + 0.7269075, + -0.43536326, + -0.60122454, + -0.29983085, + -0.5400913, + 0.041919954, + -0.21864145, + 0.7213906, + -0.111735985, + -0.47600487, + -0.0031837225, + -0.3050074, + -0.7322953, + 0.16978635, + -0.24244471, + 0.0001225525, + 0.91895986, + -0.13676165, + -0.80691725, + -0.048720796, + 0.7108992, + -0.009051092, + -0.100255065, + -0.09516011, + 0.5588628, + 0.5564072, + -0.25045562, + -0.4960916, + -1.1323867, + 0.11936732, + 0.39202914, + -0.10291657, + -0.18153173, + 0.7844175, + -0.970192, + -0.75276583, + -0.80025136, + -0.2930739, + -0.20164618, + -0.049356233, + -0.6070099, + 0.87396836, + -0.83136827, + -0.34843773, + -0.39875785, + -0.3896835, + -0.52458715, + 0.88109076, + 0.033109926, + 0.36121753, + -0.2378299, + 0.40353322, + -0.359295, + 0.06513582, + 0.18539643, + -0.65898174, + 0.17032634, + -0.61761093, + -0.4670989, + 0.42029515, + 2.492098, + -1.0685512, + -0.25783846, + -0.061305285, + -0.4614005, + -0.43839523, + -1.0307093, + -0.06282803, + -0.17336224, + -0.045120586, + 0.5554863, + 0.35667646, + 1.083029, + -0.2838388, + -0.80199116, + 0.23104411, + -0.08114969, + 0.18404332, + -0.4801129, + -0.29103512, + 0.040294632, + -0.7168218, + 0.3373778, + 0.3376303, + 0.2860886, + 0.22465688, + 0.82164073, + -0.28746676, + 0.102047175, + -0.076054074, + 0.07718318, + 0.30595335, + -0.21119013, + -0.8824734, + 0.74263585, + 0.23403302, + 0.2242701, + -0.13988382, + 0.3347621, + -0.47260973, + 0.03750425, + -0.21823752, + 0.5403979, + 1.0854841, + 0.18132886, + -0.9692171, + 0.21211968, + 0.08338691, + 0.32460546, + 0.40595904, + 0.4655614, + -0.39682814, + -0.31085533, + -0.111354485, + -0.11753611, + -0.81394947, + 0.21717328, + -1.0845712, + -0.44836223, + -0.8466177, + -0.19974634, + 0.9882812, + 0.0890016, + 0.5522668, + -0.06767276, + 0.39504752, + -0.4622807, + 0.4381723, + 0.15280905, + 0.42732584, + -0.47989413, + 0.4109313, + 0.4594461, + 0.33422354, + 0.37408018, + 0.030283134, + 0.026917215, + 0.57763326, + -0.3505468, + -0.4145103, + -0.16357224, + -1.1120538, + -0.25640076, + -0.9251214, + -0.2698165, + 0.16597259, + 0.50696796, + 0.52712345, + -0.22624606, + -0.6591132, + 0.0057306103, + 0.12591052, + 0.113775805, + -0.4102314, + 0.2006317, + 0.62404746, + 0.41583973, + -0.42746988, + -0.48486865, + 0.09273217, + -0.27590284, + 0.055217236, + -0.061483607, + 0.17805272, + 0.37678847, + 0.18731388, + 0.36124834, + 0.65263, + 0.42178708, + 0.24066418, + -0.030739963, + 0.63995516, + -0.8225461, + -0.72261834, + -0.52842116, + 0.50984836, + -0.030361123, + -0.1577363, + 0.1648093, + -0.19359025, + -0.034949284, + 0.2988552, + -0.36837912, + -0.841917, + 0.030720156, + 0.79013705, + -0.08412952, + -0.08798884, + 0.24427596, + 0.030530788, + 0.25383794, + -0.112018175, + -0.73104775, + -1.1856406, + -0.4954528, + -0.092962936, + 0.0026716962, + 0.288796, + 0.14233585, + -0.1019603, + 0.022725329, + 0.5512363, + 0.2314963, + 0.33837482, + -0.23922195, + 0.9716413, + 0.019702293, + -0.33858964, + -0.38239527, + -0.47916412, + -0.18356237, + 0.6759993, + 0.1446533, + 0.2868742, + 0.09440738, + 1.0093181, + 0.107552245, + 0.29649833, + -0.12859958, + -0.36744794, + 0.38876885, + -0.43942642, + 0.59571046, + 0.06015724, + -0.2921609, + 0.9253388, + -1.4466951, + -0.07155932, + -0.3801673, + -0.3237101, + -0.30034134, + 0.4394218, + 0.21598208, + 0.13728024, + -0.4547667, + -0.50926316, + 0.7725967, + -0.5529058, + 0.22600242, + -0.76590276, + -0.38595828, + -0.5944012, + -0.12059869, + -0.5490608, + -0.1074872, + -0.019830607, + 0.44994834, + -0.19807145, + 0.31822562, + -0.015663408, + -0.36639303, + 0.44426286, + 0.9203479, + -0.42189762, + 0.251023, + -0.12467627, + 0.10124249, + 0.51018065, + -0.11293939, + -0.28565067, + -0.58540344, + -1.2013627, + -0.6528829, + 0.10190184, + 0.18413442, + -1.2284454, + -0.047073707, + -0.04774294, + 0.00879465, + 0.6565978, + -0.16963653, + -0.15605667, + 0.40658137, + -0.3324082, + 0.6163044, + 0.41124812, + 0.22242068, + -0.18809533, + -0.9417567, + -0.2874769, + -0.06535176, + 0.67364764, + -0.08812605, + 0.41780424, + -0.5377658, + -0.0015818104, + 0.31167334, + -0.19430287, + 0.1621927, + 0.4404119, + -0.24636857, + -0.07045509, + 0.48035216, + -0.09852341, + 0.093290314, + -0.10909206, + -0.4603803, + -0.14152586, + 0.95571095, + 0.62744784, + -0.45938164, + -0.6931386, + -0.30443108, + -0.6424439, + 0.39389208, + -0.40803915, + 0.19551261, + 0.5531618, + 1.0679308, + -0.06768836, + -0.8153055, + -1.0045842, + -0.25520268, + 0.22451389, + 0.57086205, + 0.38129184, + -0.09262459, + 0.1768108, + -1.6889908, + 0.61961186, + -0.18790792, + 0.17168213, + -0.40459812, + -0.37758875, + -0.8249033, + 0.04190822, + -0.26293743, + 0.40416068, + 0.12001578, + -0.12035736, + -0.19455516, + 0.2879577, + -0.16793215, + -1.2323643, + -0.25752723, + 0.2659017, + -0.8278869, + 0.5417745, + 0.07752211, + 0.6846488, + 0.052604392, + -0.25198662, + 0.21213739, + -0.003738284, + 0.45335928, + -0.41089243, + -0.021020848, + -0.29493326, + -0.38712823, + 0.0833468, + 0.41104013, + 0.58993864, + -0.5304365, + 0.36153173, + -0.6706966, + -1.2766887, + 0.053258628, + -0.5208078, + -0.97999114, + -0.458128, + 0.15535569, + -0.4879516, + -0.35154346, + 0.25341767, + -1.1727337, + 0.388078, + -0.3207617, + -0.1792395, + 0.46917552, + 0.55204815, + -0.11608875, + 0.51117605, + -1.0087101, + -0.5363407, + 0.21466093, + -0.15020578, + 0.81653947, + -0.11078435, + -0.25104895, + -0.036922105, + 0.13896334, + -0.4325813, + -0.08875872, + -0.93452597, + -0.051369436, + 0.17095909, + 0.10732886, + 0.58508897, + 0.12577686, + 0.65640986, + -0.17895316, + 0.35242403, + 0.057221774, + -0.30416933, + 0.3452596, + 0.14200568, + -0.38665596, + -0.6789423, + -0.30404127, + -0.73584646, + 0.49731708, + -0.09426406, + 0.1128646, + 0.047390196, + -0.64774776, + 0.3171811, + -0.22691575, + 0.13129006, + 0.07500176, + -0.46215487, + 0.7174379, + 0.68840504, + 0.00710728, + 0.589038, + -0.57648844, + 0.08382875, + -0.91340125, + 0.39176834, + 0.29309952, + -0.5130027, + 0.696098, + -0.08430301, + -0.7817625, + -0.04281693, + 0.015537277, + -0.47967958, + 0.71796507, + -0.1570086, + -0.7742213, + 0.2018594, + 0.408714, + -0.4905717, + 0.6462781, + -0.16660312, + -0.69596094, + 0.06355047, + 0.19466506, + 0.12645929, + 0.06850716, + -1.210323, + 0.38836396, + -0.3030721, + -0.0051871464, + -0.41546592, + -0.7614092, + -0.22136779, + -0.41378182, + 0.44157362, + -0.4242948, + -0.38165456, + 0.33663103, + 0.18641976, + -0.39836776, + 0.7113516, + 0.5622426, + 0.08546512, + 0.035378065, + 0.47266406, + -0.456017, + 0.31999475, + -0.4385763, + 0.34555626, + -0.06886948, + 0.4506342, + -0.3744443, + -0.92741245, + 0.1837462, + -0.046406038, + -0.5281768, + 0.66094655, + -0.3484537, + 0.56631184, + -0.076211855, + -0.19109938, + -0.18815644, + -0.2087199, + 0.3351898, + -0.6983129, + -0.4601016, + 0.46921366, + -0.47281116, + -0.26249737, + -0.55167055, + -0.17602403, + -0.0702986, + -0.18690544, + -0.529135, + 0.50735116, + 0.28183684, + 0.14409986, + 0.2657736, + -0.15059504, + -0.19967055, + 0.60094106, + 0.118063115, + 0.2720132, + -0.18535979, + 1.0942022, + -0.60162324, + -0.383341, + 0.80736315, + 0.5034312, + 0.4619883, + 0.3257523, + -0.26554084, + -0.10119011, + -0.6222226, + 0.71736336, + -0.26540396, + -0.46771964, + 0.053038403, + 0.25171256, + 0.43529844, + 0.02142495, + -0.04689499, + 0.44853666, + 0.26083484, + -0.116901405, + 1.1373184, + -0.38815048, + -0.48569024, + 1.0568948, + 0.1556075, + -0.7552762, + 0.09545909, + -0.56781906, + 0.6930021, + 0.62896156, + -0.509037, + 0.13022387, + 0.06489645, + 0.29460526, + -0.4683541, + -0.3275022, + -0.5653447, + 0.28005564, + 1.314961, + -0.45528728, + 0.3595664, + -0.07831573, + 0.21623048, + 0.8490763, + -0.44413608, + -0.2838844, + 0.7364958, + -0.55966, + 0.36763892, + -0.09257196, + 0.5086046, + 0.1791147, + 0.12651272, + -0.0659446, + 0.35642254, + 0.4960022, + -0.3261274, + 0.3582364, + -0.4566354, + -0.9513329, + -0.23286606, + -0.1476529, + 0.097513385, + 0.26567224, + 0.23415206, + 0.6542146, + -0.65086573, + 0.34176886, + -0.25682765, + 0.13040833, + -1.3093685, + -0.1956301, + -0.16950317, + -0.6464086, + 0.11677717, + 0.004370507, + 0.19164248, + 0.015051959, + 0.6294746, + -1.0208678, + 0.98100454, + 0.120617986, + 0.095772706, + -0.08292487, + 0.28645653, + 1.3256584, + 0.67311364, + 0.20377639, + -0.024075877, + -0.8684684, + 1.0630727, + 0.11346477, + 0.6664604, + 0.053850546, + 0.20282528, + -0.61186343, + 0.15420926, + 0.49206918, + 0.89120436, + -0.50234985, + 0.32309282, + -0.7069893, + -0.27246547, + 0.32513028, + 0.821497, + 1.1217507, + 0.3474736, + -0.72642416, + 0.43438447, + 0.91971123, + -0.6991543, + 0.5903043, + 0.36776185, + 0.91723686, + -0.15330768, + 0.34444672, + 0.4993723, + 0.005135016, + 0.2397139, + -0.19212697, + -0.26486704, + -0.20071188, + 0.77758276, + -0.32986975, + 0.85055673, + 0.4470376, + -0.355585, + 0.5791537, + -0.18879102, + 1.0138875, + -0.6377575, + -0.47679564, + 0.23453407, + -0.21484935, + -0.06277963, + 0.016267639, + -0.038522463, + -0.2910481, + -0.08775177, + -0.32365826, + -0.120528236, + 0.6254488, + 0.36157244, + -0.15227316, + -0.15612845, + -0.1488147, + 0.5264894, + 0.6869712, + -0.47951394, + -0.5887315, + 0.29084662, + 0.3772035, + -0.9243756, + 0.7098194, + -0.26495278, + 0.18187267, + -0.33764955, + -0.9423133, + -0.4527006, + 0.5557752, + -0.2779557, + 0.21573702, + -0.046992008, + -0.24766928, + 0.28135338, + -0.20724025, + 1.1065139, + -0.33606735, + 0.14305514, + 0.16318558, + 0.13807955, + -0.3045083, + 0.4627882, + 0.50714403, + 0.07161705, + -0.12695299, + 0.46468607, + 0.30766177, + -0.26252046, + -0.35145894, + -0.119316, + -0.95560217, + 0.009730957, + -0.2715275, + -0.10523389, + 0.14546426, + 0.29558143, + 0.6752123, + 0.27917668, + -0.8822073, + 0.391304, + -0.13735482, + 0.8109309, + 0.6757575, + -0.06867047, + 0.41263005, + 0.05722613, + 0.49767062, + -0.54687214, + -0.530074 + ], + "2025-05-20T05:34:01.533399", + "2025-05-20T05:34:01.533399", + 45.3172531128, + -89.4484939575, + 84.5875778198, + "3", + "ID: 4051675
Cluster: 3
Chunk: mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr ..." + ], + [ + 11712, + "05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\n38\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren.\n\nVersuchen Sie eventuell vorhanden mehrere L\u00f6sungen durch Variation des Anfangswertes zu finden:\n(a)\n(b)\n(c)\n39\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t)\nauf.\n\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-\nAlgorithmus.\n\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3\nDesign-Variablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit\nden Startwerten von (b)\n40\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\n41\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .", + 18240, + 11066362, + null, + "md", + null, + [ + 0.13278152, + -0.31135443, + -0.06157794, + -0.0959831, + -0.2155047, + 0.18859595, + -0.16959096, + -0.34411773, + -0.041826297, + -0.31756315, + -0.9122811, + -0.22444451, + 0.0037292335, + 0.19952506, + 0.5708837, + 0.2232977, + 0.6871961, + 0.60550606, + 0.30983904, + -0.8043447, + -0.27264884, + 0.05291005, + 0.78058624, + 0.6034761, + -0.6272017, + 1.1743269, + 0.23666318, + -0.18208024, + -0.078005254, + 0.4810142, + -0.9538864, + -0.016191434, + -0.7600871, + -1.2925054, + -0.23352908, + 0.39050117, + 0.45212886, + 0.25021592, + -0.64383024, + 0.47578508, + -1.1893016, + 0.611, + 0.77812654, + -0.414382, + -0.45942408, + -0.096408054, + -0.054397367, + -1.1181612, + -0.52113163, + -0.5145301, + -0.020105878, + -0.2325208, + 0.7031965, + -0.2588882, + 0.35841376, + -0.3014021, + -1.2043331, + 0.1690771, + -0.3878942, + -0.15058325, + 0.101697564, + 0.5955356, + -1.0562714, + 0.29252487, + 0.46541068, + -0.814918, + 0.8833382, + -0.29397434, + 1.08242, + 0.30045655, + -0.8468625, + 0.13749094, + 0.49681777, + -0.81653535, + -0.12798364, + 0.43576333, + -0.24409834, + 0.10145719, + -0.5168317, + 0.19488369, + 0.5306045, + -0.45292297, + -0.73087025, + -0.69558203, + 0.17853343, + 0.10927347, + 0.37190104, + 0.7577907, + 0.60335314, + -0.77994347, + 0.6115885, + 0.34977943, + 0.54180825, + 0.12498224, + -0.36913645, + 0.53334236, + -0.4988092, + -1.0403296, + 0.5792681, + 0.061288983, + 0.40794128, + 1.0559, + 0.258757, + -0.25419834, + -0.5606047, + -0.21674825, + -0.93479306, + 0.157637, + -0.074171975, + 0.30134892, + 1.088072, + -0.5859262, + -0.50312537, + 0.05258239, + 0.156779, + -0.7095016, + -0.12304297, + 0.27743536, + -0.1041456, + 0.1653678, + 0.791414, + 0.056318734, + -0.08245245, + -0.14135614, + 0.49738526, + 0.122735225, + 0.39718607, + -0.04237839, + -0.16887578, + 0.13292146, + -0.022606276, + 0.23233768, + -0.35401678, + -0.65738916, + 0.5876043, + -0.508946, + -0.28810933, + 0.40388715, + 0.4115173, + -0.12137085, + 0.4695793, + -1.6207632, + -0.6038363, + -1.229742, + 0.797075, + 0.5272327, + -0.14275688, + 0.5298482, + -0.11964016, + -0.68863976, + 0.12506014, + -1.4978632, + -0.22885236, + 1.2072421, + 0.0974693, + -0.051257845, + 0.71246576, + 0.3622653, + 0.22051454, + 0.42224854, + 0.15144718, + 0.1825112, + -0.29761747, + -0.18305585, + 0.5251316, + 0.3295107, + -0.6035769, + 0.3900929, + 1.4213151, + -1.1422626, + 0.25678518, + -0.24574405, + -0.17083566, + -0.04310607, + -0.33728582, + 0.23379776, + 0.16465096, + -0.6068399, + 0.43697876, + -0.066386655, + 0.51313287, + 0.55818623, + 0.14550602, + 0.0973894, + -0.41228867, + -0.43490815, + 0.39972666, + -0.16020359, + -0.04254414, + 0.31778383, + -0.4034773, + 0.18023324, + -0.15604183, + -0.57508016, + 0.6193066, + 0.17061692, + -0.6821827, + -0.11551791, + 0.19050148, + 0.12501691, + 0.92914134, + -0.046413276, + 0.72909325, + -0.380835, + -0.56400025, + -0.5728295, + -0.47299182, + -0.35795212, + -0.49700177, + -0.28979057, + 0.70127416, + -0.386043, + 0.5415522, + 0.5190307, + 0.027266027, + 0.1646466, + -0.22251202, + -0.8237839, + -1.0840379, + 0.23848295, + 0.27224803, + -0.021960858, + -0.1262675, + 0.142936, + 0.35766637, + 0.4548736, + 0.5258867, + 0.7544729, + 0.43750295, + 0.56583893, + -1.2316846, + -0.441197, + -0.71860844, + -0.42223158, + -0.5449957, + -0.038461443, + 0.6518616, + 0.29518667, + -0.7981539, + 0.29493442, + 0.29684487, + -0.2280859, + 0.4668674, + -0.30376026, + -0.21520835, + 0.37391156, + -0.38781515, + 0.58167017, + 0.11238755, + 1.1677887, + 0.5656577, + -0.48828962, + -0.043962434, + 0.9605713, + 0.5708154, + -0.1718336, + 0.41549957, + -0.24311967, + -0.5279203, + -0.15245146, + -0.43650907, + -0.25063822, + 0.23182863, + 0.02608934, + -0.48055077, + 0.19021404, + 0.97594094, + 0.4846406, + 0.4892656, + 0.12171269, + -0.34528613, + 0.16845417, + 0.3418432, + 0.7761509, + 0.38849103, + 1.0743829, + -0.22417736, + 0.6509449, + 0.15705523, + -0.9244966, + 0.1973379, + -0.49305004, + -0.2134893, + -0.57629377, + 0.3116263, + 0.68125594, + -1.3141932, + 0.05633321, + 0.122974694, + -0.36968324, + -0.6122818, + 0.027975544, + 1.3510925, + 0.21716595, + -0.13250229, + -0.045343764, + -0.052563004, + 0.087762594, + -0.26348215, + -0.28107244, + 0.5681984, + 1.2921271, + 0.03895397, + 0.20326939, + -0.22359481, + 0.35828394, + -0.2452621, + 0.3715069, + -1.3277928, + 0.24986061, + -0.65413326, + 0.6187351, + 0.5947165, + -0.20966962, + 0.19751352, + 0.57628644, + 1.0361384, + 0.09293172, + -0.49023482, + -0.19207585, + 0.84557027, + 0.86853635, + -0.19354211, + -0.68885565, + 0.26510537, + -0.30220044, + 0.30309957, + -0.6198408, + -0.8082925, + 0.15333593, + -1.3863586, + -0.4162713, + 0.10639246, + 0.33652335, + 0.60040927, + 0.25492328, + -0.5644359, + -0.058602702, + -0.8191221, + -0.26590186, + -0.066837594, + 0.05863843, + 0.29919574, + -0.025955364, + -0.28309247, + -1.145227, + 0.5131561, + -0.11837989, + -0.22334346, + 0.2209174, + 0.8494119, + 0.2671587, + 0.10611507, + -0.34933817, + -0.49108464, + -0.55123174, + 0.6790414, + -0.013424285, + 0.5778683, + 0.3862689, + 0.44127566, + -0.6727534, + 0.3004817, + -0.5143808, + 0.62404203, + -0.021827735, + 0.066406675, + 1.1396846, + -0.7236167, + 0.10403601, + -0.11855886, + -0.40562212, + -0.34204504, + 0.40084398, + -0.43653268, + -1.1060885, + -0.5283608, + 0.12733313, + -0.39405432, + -0.030514546, + 0.2832729, + -0.18029456, + -0.22412203, + 0.4341524, + -0.2078506, + -0.26816472, + 2.0870132, + -0.3144638, + 0.4421623, + -0.16097236, + -0.84609985, + 0.08704701, + 0.06598862, + 0.3318594, + -0.65281576, + 0.1200654, + 0.80431306, + 0.27277377, + 0.62238586, + -0.28738427, + 0.027827363, + 0.34328768, + 0.104054585, + 0.22715525, + -0.31007516, + 0.05561182, + 0.2275968, + 0.40966305, + 0.3929777, + -0.49554378, + 0.35867617, + 0.33300272, + 0.24004875, + -0.24718708, + 0.1605895, + -0.33531177, + 0.08650768, + 0.5509718, + 0.39403036, + -0.12731834, + -0.32734218, + 0.4602166, + -0.26366913, + -0.28178495, + 0.29246563, + -0.08327724, + 0.18574832, + -0.32617146, + -0.72519934, + 0.36393702, + 0.6194111, + -0.434605, + 0.16197982, + 0.5063121, + -0.11608957, + -0.5932591, + 0.60074997, + 0.30020532, + -0.32122838, + -1.1464648, + 0.36963856, + -0.258484, + -0.3240757, + -0.37507305, + -0.81534433, + -0.7781533, + 0.02148062, + 1.1315584, + 0.15528496, + 0.8833935, + 0.6972205, + -0.6685419, + -0.30832574, + -0.105755106, + -0.5330986, + -0.48839483, + -0.8983202, + -0.33653268, + 0.27870017, + 0.13802384, + -0.1289786, + -0.28357792, + -0.48529887, + 0.14804383, + 0.5671393, + -0.8907135, + 0.2928925, + 0.0938501, + 0.0067710653, + -0.6403894, + -0.1440139, + -0.21439463, + -0.8338955, + -0.18260229, + 0.11066741, + 0.00556558, + -0.06745806, + -0.015124917, + -0.30638534, + 0.26730973, + -0.46178108, + -0.27317092, + 0.36178884, + -0.13109958, + 0.47923997, + -0.36399624, + 0.494842, + 0.06134274, + -0.49330556, + 0.31668517, + 0.058342095, + -0.9186228, + 0.36583215, + 0.5066034, + 0.49339366, + -0.497808, + -0.07659338, + 0.69759226, + -0.4847431, + 0.7018075, + -0.70322704, + -0.5558381, + 0.14483123, + -0.3379312, + 0.5427033, + -0.59686476, + -0.34736636, + 0.1392045, + -0.27912822, + 0.13489726, + 0.31690472, + 0.19096076, + 0.34423745, + 0.6832738, + 0.45758986, + -0.2526263, + 0.61122006, + 0.86365396, + -0.46305776, + -0.6384415, + 0.85836315, + 0.19355962, + 0.31165552, + -0.502262, + 0.39932904, + 0.27671343, + -0.5547037, + -0.067833275, + 1.4531509, + 0.52446365, + -0.8414034, + 0.3728188, + -0.060749896, + -0.16210818, + 0.08857845, + 0.45471713, + -0.42862085, + 0.113973446, + -0.7683229, + -0.26931372, + -0.15292268, + -0.3414179, + 0.08634811, + 0.13814346, + 0.35907376, + 0.17385083, + 0.77899677, + -0.29347432, + 0.036382034, + 0.22914174, + -0.8451214, + -0.12352831, + -0.2731728, + 0.79904526, + -0.57232994, + -0.5880431, + -0.100686185, + 0.05056775, + 0.7263571, + -0.124723494, + 0.061887696, + 0.10561489, + -0.45702636, + -0.92749673, + 0.26338676, + -0.7206606, + -0.293469, + -0.34240994, + 0.07086856, + 0.2613831, + 0.113911375, + -0.41010347, + -0.21035689, + 0.046425324, + 0.81236374, + 0.09410357, + 0.2982619, + 0.3586251, + 0.02938283, + 0.21911958, + 0.20775308, + 0.20240535, + 0.27939186, + -0.36065298, + 0.7995263, + 0.060141884, + 0.12142134, + -0.716944, + 0.038572647, + -0.53842634, + 0.22529013, + 0.37635222, + -0.26122668, + -0.009716585, + 0.16900256, + 0.04834977, + -0.45682752, + -0.71560925, + -0.6909257, + -0.21666911, + -0.4594161, + 0.897729, + 0.27273157, + -1.1791021, + -0.41959184, + -0.52676094, + 0.4248587, + 0.26062524, + -0.37764415, + -0.27821213, + -0.7592299, + 0.513862, + -0.52372855, + -0.17803739, + 0.44616267, + -0.10160947, + -0.09384552, + 0.8631576, + 0.03715118, + -0.51367205, + 0.07143937, + 0.19396868, + 0.037239563, + 0.4836729, + 0.6816011, + -0.022967726, + 0.7085988, + 0.4703946, + 0.8301578, + 0.19264829, + 0.690792, + 0.16071585, + 0.6023079, + 0.99213284, + 0.4841313, + -0.80471087, + 0.1546302, + -0.54199815, + -0.0397847, + 0.48576903, + 0.11702671, + 0.2708296, + 0.3253973, + 0.17995015, + -1.1277666, + 0.8909336, + 0.54224765, + -0.010506406, + -0.058532394, + 0.6446838, + -0.0063757785, + 0.32187387, + -0.54558635, + -0.053988688, + 0.4862977, + -0.04170046, + 0.1857891, + -0.11987661, + 0.3399579, + -1.2227956, + -0.44210136, + -0.7543268, + -0.15403596, + 0.74466515, + -0.19297099, + 0.67184055, + 0.3578894, + -0.028506383, + -0.21201698, + -0.09409987, + 0.7894345, + -0.23917256, + 0.6158142, + -0.13363782, + 0.12613484, + -0.10123901, + 0.23612776, + 0.274582, + -1.279424, + 0.46554863, + -0.42464256, + 0.2833177, + -0.265592, + -0.23230657, + -0.9171607, + -0.0731343, + 0.056313045, + 0.34681985, + 0.10072088, + 0.3243995, + -1.0373851, + 0.06735458, + -0.30706966, + -0.24983689, + 0.14009961, + 0.023934279, + -0.89500135, + -0.35065505, + 0.12503356, + 0.660818, + -0.6808548, + 0.70910966, + 0.5763697, + 0.7176753, + -0.27255943, + 0.18725452, + -0.14876348, + 0.34974486, + -0.57060266, + 0.038431898, + 0.4080218, + -0.37856647, + -0.93564326, + 0.11181921, + -0.4627009, + 0.7925894, + -0.6229144, + -0.48980254, + 0.16342555, + -0.25391254, + -0.23103794, + -0.2844454, + -0.85310656, + -0.80359143, + -0.6040839, + -0.7253181, + 0.0026742183, + 0.28728622, + 1.148962, + -0.48792642, + 0.2842412, + 0.3645267, + -0.4648015, + -0.9213314, + 0.52954495, + -0.6035678, + 0.70151377, + -0.21445315, + 0.5055376, + 0.09093628, + 0.39359313, + -0.12688418, + 0.88431776, + -0.45495218, + 0.41177988, + 0.060649965, + 0.60405934, + -0.34124124, + -0.35883066, + 0.10259397, + 0.20392531, + -0.51252246, + 0.7340005, + -0.5167552, + -0.020560894, + -0.14322367, + 0.73816836, + 0.08452162, + 0.3366664, + -0.28547305, + -0.414286, + 0.2772928, + -0.27176413, + -0.33312863, + 0.019818522, + -0.6576307, + 0.23557869, + -0.14305007, + 0.33215767, + -0.5945065, + -0.5699586, + -0.95601267, + -0.44717252, + 0.015808532, + 0.7111184, + 1.0880994, + 0.14963348, + 0.42463624, + 0.24587406, + 0.45139757, + 0.06649259, + 0.237076, + 0.06986576, + 0.84835935, + -0.096683756, + 0.4504913, + 0.023005322, + -0.01268344, + 0.36110288, + 0.30280313, + -0.2742602, + -1.1210381, + -0.61601204, + 0.03838887, + 0.54113525, + 0.70907676, + -0.7621316, + 0.57458913, + -0.5426123, + 0.21902442, + -0.0943072, + -0.085781865, + -0.32712734, + 0.09240769, + -0.71261513, + -0.7671221, + -0.58039546, + -0.36024624, + -0.35377342, + 0.45254496, + 0.002359286, + 0.9285045, + -0.33838707, + -0.39363387, + -0.36997116, + -0.46203136, + -0.37905714, + -0.0467895, + -0.26566517, + 0.19194813, + 0.83236855, + -0.0074790865, + 0.04095209, + 0.35957527, + -0.517994, + 0.68622744, + 1.2182957, + -1.658386, + 0.66289836, + -0.5545988, + -0.52251, + 0.4986412, + 0.12483737, + -0.025293142, + 0.14066467, + -0.010007046, + 0.5071188, + -0.04086826, + -0.62265974, + -0.4074867, + -0.14956568, + 0.39330986, + 0.29001006, + -0.06392122, + 0.2368705, + 0.035587817, + -0.12486032, + -0.2010521, + 0.17419215, + -1.2080908, + 0.73933953, + 0.6563852, + -0.044244464, + -0.071389526, + -0.85518515, + 0.32533085, + -0.02053117, + 0.836703, + -0.103036515, + -0.24393842, + 0.33429235, + 0.31941554, + 0.5991585, + -0.6117182, + -0.10833903, + 0.35645992, + 0.52835494, + 0.38571927, + 0.038572073, + -0.26446277, + 0.25595635, + 0.41936666, + 0.5565293, + -0.4459373, + -0.16651413, + -0.5453741, + 0.020576378, + 1.0345913, + -0.24595225, + 0.07241665, + 0.36461794, + 0.09553152, + -0.55995953, + -0.10554329, + -0.06353788, + -0.5882064, + 1.0756981, + -0.38666967, + 0.15872802, + 0.007833134, + -0.27261806, + -0.27591252, + 0.106012255, + -0.13642198, + -0.10779178, + -0.011313897, + -0.2261298, + -0.14277282, + 0.30318618, + 0.28932336, + -0.19968621, + -0.100097135, + 0.3303197, + -1.3191462, + 1.121996, + -0.2981208, + -0.37089255, + -0.28362218, + -0.30452153, + 0.31841075, + 0.31817052, + 1.2421726, + 0.17694561, + 0.32516807, + 0.8151772, + 0.3517031, + 0.3440555, + 0.46692193, + -0.3421909, + -0.031560764, + -0.07589289, + 0.80694664, + 0.6548772, + -0.3370757, + 0.304637, + -0.4979766, + 0.344266, + 0.09269427, + 0.1716184, + 0.6808771, + 0.14945808, + -0.5239382, + -0.3867084, + 0.30532575, + -0.76076794, + -0.56818956, + 0.5785141, + -0.38831484, + -0.49397573, + -0.6799729, + 0.7531256, + -0.08720711, + -0.4836923, + 0.6610263, + -0.50706923, + 0.0682959, + 0.41493955, + 0.11092168, + -0.29508144, + -0.4484795, + 0.49708608, + 0.6466255, + -0.78818566, + -0.070279, + 0.006191928, + -1.2128088, + 0.3863935, + 0.8634359, + 0.3196931, + -0.29025665, + 0.44107005, + -0.68560696, + -0.1157624, + -0.2641405, + -0.5369768, + 0.22932513, + -0.40921497, + 0.54826427, + 0.39164785, + 0.4030525, + 0.4761254, + 0.79881006, + -0.6193539, + -0.047378656, + -0.14887397, + 0.33732706, + -0.21345767, + -0.7915791, + 0.061745115, + 0.08823355, + -0.55377394, + -0.1289217, + -0.60512155, + 0.05119316, + -0.056068514, + -0.21231407, + -0.28771895, + 0.030454079, + -0.0027018487, + -0.6767699, + -0.49564698, + -0.23213276, + -0.1649139, + 0.18415661, + 0.7115629, + -0.19208682, + 0.22399426, + 0.4609465, + -0.6305711, + -0.09469627, + -0.15506153, + -0.029517949, + -0.90091354, + -0.81262314, + 0.2414169, + -0.5996703, + 0.013060376, + -0.11032681, + 0.099153474, + 1.1478568, + -0.7937746, + 0.3976247, + 0.42185098, + -0.45602322, + -0.23627502, + 0.2156781, + 0.87443745, + -0.039890528, + 0.01381186, + 0.31067833, + -0.7053322, + -0.26480982, + -0.10581334, + -0.53060836 + ], + "2025-05-20T05:34:23.384686", + "2025-05-20T05:34:23.384686", + 118.2042999268, + 3.2703001499, + -47.7644805908, + "1", + "ID: 11066362
Cluster: 1
Chunk: 05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Dow..." + ], + [ + 11713, + ".\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n42\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\n(b) Stellen Sie damit die Newton-Iterations-Formel auf und programmieren diese in Python.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n43\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(c) Es sei a = 0.1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n44\u00dcbung 7.4.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.", + 18240, + 12595295, + null, + "md", + null, + [ + -0.3088199, + 0.3640352, + -0.31572556, + -0.5632599, + -0.8831732, + 0.1357588, + 0.2828112, + -0.073052764, + -0.14028428, + -0.4137379, + -0.3779284, + 0.22783622, + 0.6706066, + -0.056991823, + 0.40256593, + 0.05860323, + -0.27182338, + 0.73582864, + 0.04000853, + -0.95994973, + 0.3459747, + -0.008289742, + 0.791801, + 0.7151977, + -0.7154374, + 0.9411023, + -0.18865997, + -0.31734714, + -0.26258975, + -0.47804314, + 0.28099033, + -0.4079598, + -0.5721661, + -0.24909514, + -0.12890777, + -0.14122331, + 0.23889612, + -0.87130135, + -0.05149117, + 0.40285057, + -0.7891446, + 0.8133566, + 0.53938705, + -0.046355966, + 0.2888184, + 0.21963145, + 0.22220808, + -1.3960292, + 0.09103116, + -0.3063383, + -0.14920121, + -0.24261743, + 0.6040509, + -0.04994193, + 0.7676259, + -0.26639926, + 0.4522859, + 0.050208904, + -0.26670495, + -0.08939862, + 0.40578613, + 0.6614084, + -1.1288393, + -0.11489549, + 0.21283846, + -0.11688706, + 0.5288078, + -0.033631053, + 0.14976765, + 0.19768643, + -0.65979356, + 0.4471144, + 0.0056704655, + -0.09458379, + -0.112005964, + 0.0008882331, + -0.37963963, + 0.8810093, + -0.07736359, + 0.2620185, + 0.25588855, + 0.17052135, + 0.5200379, + -0.34820402, + 0.6814076, + -0.84188217, + 0.16602696, + 0.21277499, + 0.078822225, + -0.39773995, + -0.2619002, + 0.22882652, + -0.33049983, + -0.3447321, + -0.5935127, + 0.12364051, + -0.65231156, + 0.3024006, + 0.3214048, + 0.2883591, + 0.10383496, + -0.12549928, + 0.5816095, + -1.3210194, + -0.84840876, + -0.19548997, + -0.4598337, + 0.24828933, + -0.20160554, + 0.6754582, + 1.2274503, + -0.23909806, + 0.0061853193, + 0.25237063, + 0.50343853, + -1.0903183, + -0.40035185, + 0.7934746, + -0.20527695, + -0.18899569, + 0.48278388, + 0.31971702, + 0.6695269, + 0.25840232, + 0.52140886, + 0.066064216, + 0.23381665, + 0.33242688, + 0.42536396, + 0.68530387, + 0.5099268, + -0.082808204, + 0.67430466, + -0.09424926, + -0.07362352, + -0.23353042, + 0.10285139, + 0.042422168, + -0.07468959, + -0.47640082, + 0.14910409, + -0.5035368, + -0.65842396, + 0.17512524, + 0.15496688, + -0.18074897, + -0.36149305, + 0.32410088, + 0.20439592, + 0.050676465, + -0.263446, + 0.7949653, + 0.57088363, + 0.4200039, + 0.46859622, + 1.1394612, + 0.0546111, + -0.33434358, + -0.8402423, + -0.38273168, + 0.20940629, + 0.7083559, + -0.74333835, + -0.16562489, + -0.05041253, + 0.2802357, + -0.71080893, + 0.014414512, + 1.048351, + -1.312922, + -0.08374014, + -0.644255, + 0.19481163, + -0.10899393, + -0.13414355, + 1.0315136, + 0.23051096, + -0.74234325, + -0.02334758, + 0.042068914, + 0.6659071, + 0.29590544, + -0.6934806, + 0.4996118, + -0.3005992, + 0.6479202, + 0.9435401, + 0.17789787, + -0.33025825, + 0.012468271, + -0.47057074, + -0.14862373, + 0.03098984, + 0.71897036, + -0.2255914, + 0.6405778, + -0.24902289, + -0.83683836, + -0.13380063, + -0.3805582, + -0.1733455, + -0.3476708, + 0.035452522, + -0.24631682, + -0.59985507, + 0.23694268, + -0.22281624, + -0.46051657, + 0.72813493, + 0.020002536, + 0.468085, + 0.03300228, + 0.5319899, + 0.44964796, + -0.044908475, + -0.17248815, + -0.44756606, + 0.024516732, + -0.55600876, + -0.36660847, + 0.50394934, + 0.14802715, + -0.09132658, + 0.5415638, + 0.3663799, + -0.42213976, + -0.4594, + 1.2996093, + 0.2845384, + -0.071948215, + -0.5455058, + -0.72335106, + -0.20604375, + -0.90673524, + -0.50468427, + -0.3518557, + 0.5413614, + 0.43315443, + -0.02303844, + 0.04827759, + 0.31603244, + -0.4553209, + 0.6144104, + 0.57707554, + 0.4910051, + 0.31598514, + 0.7190905, + 0.48233894, + 0.18999974, + 0.24193148, + 0.46849567, + -0.95606863, + 0.0021882951, + 0.9354973, + 0.42915505, + 0.22638497, + 0.09130642, + 0.31219122, + -0.3842324, + 0.046101563, + 0.45818305, + 0.04681496, + 0.5266481, + 0.35453343, + -0.5823564, + 0.6381164, + 0.42496845, + 0.59338266, + -0.43035588, + 0.13922337, + -0.29618904, + 0.17968069, + 0.104957044, + 0.29830676, + -0.27550116, + -0.5317129, + -0.47474512, + -0.12735772, + -0.7173798, + -0.12453854, + -0.037717506, + -0.013752282, + -0.54321134, + -0.011025088, + 0.3929911, + 0.21110871, + -0.29390416, + -0.4398478, + 0.10793352, + 0.6167283, + -0.26232195, + -0.3060531, + 1.5972784, + -0.26240337, + -0.7141756, + 0.223608, + 0.09221337, + 0.02683413, + -0.02056187, + -0.11638299, + 0.19315091, + 0.24724475, + 0.45774633, + 0.14341433, + -0.013861893, + 0.05551608, + 0.057693206, + -0.5671894, + -0.54670286, + 0.83107084, + 0.08118376, + -0.16982524, + 0.8060923, + -0.6531955, + 0.039523475, + 0.015200672, + 0.061988413, + 0.462259, + 0.15826909, + 0.8692533, + 0.014861889, + 0.5202361, + 0.21449433, + -0.76457024, + -0.063050814, + 0.01368928, + 0.71908975, + -0.057268508, + -0.7538402, + 0.36335906, + -0.55076426, + 0.36258003, + 0.9177642, + 1.0365118, + 0.47537407, + -0.5436593, + 0.464648, + 0.24605666, + -0.35141495, + -0.6668988, + -0.48540115, + 0.5560462, + -0.2636688, + 1.2665286, + -0.16587979, + -0.18019848, + 0.72870064, + -0.20420933, + 0.10623547, + 0.4718796, + -0.22966373, + 0.036914222, + 0.27656698, + 0.6051079, + -0.13796762, + -0.40972286, + 0.15141766, + -0.21325147, + -0.34234613, + -0.03215593, + -0.06801142, + -0.71103543, + -0.3336062, + -0.31844917, + 0.29350325, + 0.17994773, + 0.19918722, + -0.08757416, + -1.1048868, + 0.06875654, + -0.15387791, + -0.6662227, + -0.119967304, + -0.011460264, + -0.67614293, + -0.11738942, + -0.13365498, + 0.21331123, + -0.5455954, + 0.24807379, + 0.5295415, + -0.6367338, + 0.11844511, + 0.34747794, + -0.45634124, + 0.50054, + 1.9607627, + -0.26921248, + 0.35316572, + -0.15520753, + -0.8610759, + -0.21704057, + -0.4925709, + 0.030543435, + -0.0066538826, + 0.21042804, + 0.14126527, + 0.43853846, + 0.017657787, + -0.22125511, + -0.22817688, + 0.74757516, + -0.14075258, + 0.25253615, + -0.3080665, + -0.34832978, + -0.18888298, + 0.6764284, + 0.07958293, + 0.51727355, + -0.316754, + 0.21469021, + 0.54468656, + -0.06519739, + 0.3221296, + -0.17863315, + -0.24398446, + 0.36740807, + 0.19029659, + 0.07282646, + 0.899712, + 0.68628436, + -0.21379758, + -0.168105, + 0.683464, + -0.8273096, + -0.44060808, + 0.27866498, + -0.39182326, + -0.13381137, + 0.2554869, + 0.2604409, + 0.30884996, + -0.5134714, + -0.49222755, + -0.56861246, + 0.5954987, + 0.3108279, + -0.077349365, + -0.00474371, + -0.4206098, + 0.09955997, + -0.3305462, + -0.19988501, + 0.22669268, + -0.7809948, + 0.074481964, + 1.4126787, + 0.6626847, + 0.46790278, + -0.14552452, + -0.56650484, + -0.7802672, + -0.321216, + -0.31190592, + -0.110118896, + -0.14284605, + -0.4730835, + 0.112689555, + 0.066239044, + 0.046106115, + -0.13430017, + 0.45663616, + -0.27786967, + 0.27261853, + -0.27804503, + 0.32094038, + 0.1212979, + -0.3597033, + -0.5845554, + 0.44472754, + 0.47940361, + -0.41501278, + -0.13482891, + 0.12698592, + -0.35921603, + -0.1212354, + 0.22246975, + -0.21689823, + 0.07700017, + -0.048332393, + 0.3557376, + 0.6186823, + -0.017052576, + 0.61832374, + -0.15226789, + 0.29612473, + -0.25401723, + -0.65612364, + 0.3121953, + 0.37310302, + -1.0489149, + -0.39185792, + 0.4027487, + 0.30265778, + -0.7402459, + -0.14883378, + 0.7063136, + 0.26176122, + 0.26845866, + 0.03540062, + -0.36525583, + 0.75120807, + -0.19560763, + -0.09375051, + -0.6529012, + 0.200156, + -0.100323685, + -0.21730806, + -0.497785, + -0.6464898, + -0.4650893, + 0.21448687, + -0.11703843, + -0.19384393, + 0.05442716, + -0.108523875, + 0.49543798, + -0.4824949, + -0.075105846, + 0.41261023, + -0.40865317, + -0.06971934, + -0.20280506, + 0.22877029, + -0.004813805, + -0.45413977, + -0.51308274, + 1.1073762, + 0.5002776, + -1.2531722, + 1.1472095, + 0.2049424, + -0.4867228, + 0.03140496, + -0.26210678, + 0.5580943, + 0.13030833, + -0.2970394, + 0.3795617, + -0.20627137, + 0.26019174, + 0.360795, + 0.21765223, + 0.12728491, + -0.1675964, + 0.98623395, + -0.24520332, + -0.22635351, + -0.042104065, + -0.29286367, + -0.5668005, + -0.26149136, + -1.0234575, + 0.23389298, + -0.24646108, + -0.19225991, + -0.20495003, + 0.3499122, + -0.050679103, + 0.23677619, + -0.9238653, + -0.3816512, + -1.3653157, + 0.15051529, + 0.043255422, + -0.79281074, + -0.23342094, + -0.2503411, + 0.32354343, + -0.3477475, + -0.6182941, + -0.19638057, + -0.14853376, + 0.3753325, + -0.040184617, + -0.2415773, + 0.64929175, + 0.5570046, + 0.4211078, + -0.89693666, + -0.10882637, + 0.4765065, + -0.5635859, + 0.04869545, + -0.39412913, + 0.18681027, + -0.22497606, + -0.112218134, + 1.1284455, + 0.37725377, + -0.7721224, + -0.09823869, + 0.26001224, + 0.23079857, + 0.39520764, + -0.23493029, + -0.099763446, + -0.56669074, + 0.16690072, + -0.4035781, + -0.15068443, + 0.21722904, + -1.0879602, + -0.27624446, + -0.023628391, + -0.30603942, + 0.36875868, + 0.0052760243, + 0.3186158, + -0.20285556, + -0.4246448, + -0.5065971, + -0.36871764, + 0.42008093, + -0.54002863, + 0.035855487, + -0.56036174, + 0.9715348, + -0.72711074, + -0.11933465, + 0.17599963, + -0.37107807, + 0.5310406, + 0.48053405, + -0.08195922, + -0.78175956, + -0.108498335, + 0.7756748, + 0.4468291, + 0.25742537, + 0.035793178, + 0.0035554757, + 0.7731381, + 0.10304962, + -0.23865217, + -0.337972, + -0.8189733, + 0.14016184, + 0.8605752, + 0.1363914, + 0.16039087, + -0.41394863, + -0.057093583, + -0.06232515, + 0.7868592, + 0.20244685, + -0.85527074, + -0.2606771, + 0.48995373, + 0.55873114, + -0.053843014, + -0.019733727, + -0.13253608, + 0.16025694, + -0.12921074, + 0.022719339, + -0.12619156, + 0.44088683, + -0.5671519, + -0.65806293, + -0.34070575, + 0.3698821, + -0.22962627, + -0.5194472, + -0.0284101, + 0.12610152, + -0.67653525, + 0.20872854, + -0.41981328, + 0.249547, + -0.1277569, + 0.24885663, + -0.32284462, + 0.16006531, + -0.24886334, + -0.23103642, + 0.45032248, + -0.79231477, + 0.2850191, + -0.14548573, + -0.6566731, + -0.24496591, + -0.13551025, + -0.38704324, + -0.41108757, + -0.0003241673, + -0.04101916, + -0.0011307895, + -0.11789107, + -0.7913196, + -0.08304617, + -0.70799804, + 0.19786467, + -0.9275097, + 0.5958527, + -0.80666864, + -0.13206866, + 0.5947203, + 0.32671863, + -0.3496442, + 0.5533649, + -0.42228603, + 0.46394956, + 0.18562002, + 0.29523668, + 0.50710195, + -0.22948986, + -0.3344014, + -0.111899376, + 0.3008162, + -0.24653645, + -0.5126609, + -0.08234543, + 0.17267883, + -0.12323693, + -0.5643302, + 0.35072038, + -0.16755128, + -0.5685056, + -0.9813149, + 0.2948984, + 0.33937857, + -0.19816555, + -0.306533, + -0.58143723, + -0.22303392, + -0.2509134, + 1.1124885, + -0.34379867, + 0.08716568, + 0.055686206, + -0.17339788, + -0.16729099, + -0.12716441, + 0.017370492, + 0.42775074, + -0.045530185, + 0.3254748, + -0.5094994, + 0.100215696, + 0.34401998, + 0.6213141, + 0.0108341575, + 0.70894206, + -0.1988382, + -0.01101217, + -0.113299936, + -0.6327567, + -0.2632358, + -0.10285909, + -0.06535933, + 0.681251, + 0.12828067, + 0.15590592, + 0.24346234, + 0.122101165, + 0.8090748, + 0.025901817, + -0.4887064, + -0.4159148, + 0.3001246, + 0.51187676, + -0.26578715, + 0.26167247, + -1.5781801, + 0.45581087, + -0.51067024, + 0.7073751, + -0.29669982, + -0.32992154, + -0.43740296, + -0.23325303, + -0.12463999, + -0.01037465, + 0.055422038, + 0.46942887, + 0.4644596, + -0.015622716, + 0.21669668, + 0.0573031, + -0.24976394, + -0.07605499, + 0.04587814, + 0.8279598, + 0.2975644, + 0.4455736, + -0.117177024, + -0.052683733, + 0.21125583, + 0.6036108, + -0.4378574, + 0.5107722, + 0.19120893, + 0.043761797, + 0.20458306, + -0.31662863, + 0.48874053, + -0.13602747, + -0.47485414, + 0.19994727, + -0.312807, + -0.44983178, + -0.45141423, + 0.44788036, + -0.3477727, + -0.1181467, + 0.19524536, + -0.019441947, + -0.095405936, + 0.10720865, + 0.6007551, + -0.2824139, + 0.18305546, + -0.69732183, + 0.40817776, + -0.07099596, + -0.022182705, + -0.122024536, + -0.024196964, + 0.47547343, + 0.09126125, + -0.1672443, + 0.12953918, + -0.5045597, + 0.46227032, + 0.59446704, + -1.551765, + 0.4131388, + -0.07268096, + 0.37230116, + 0.079812214, + -0.18075399, + -0.22539273, + -0.08400656, + 0.14249751, + 0.2572081, + 0.046214473, + -0.42892426, + 0.46022728, + -0.39611524, + 0.6970871, + -0.40454367, + 0.10736837, + 0.15173715, + 0.15598011, + -0.255634, + 0.0016957596, + 0.37074453, + 0.12440815, + 1.0132257, + -0.013694554, + -0.09050525, + -0.04648375, + -0.8504493, + 0.5081724, + 0.25721753, + -0.23344725, + 0.92064697, + -0.6537604, + 0.22294387, + -0.13713178, + 0.16590035, + -0.63912505, + 0.20920458, + -0.33213162, + 0.13087502, + 0.03194485, + 0.031574637, + -0.76765907, + -0.09173186, + -0.16789712, + -0.69131184, + -0.06913213, + 0.5756421, + -0.47524202, + 0.107453175, + 1.3646166, + 0.2096885, + 0.24497563, + 0.16178425, + 0.36681283, + -0.3121682, + -0.17732625, + 0.22922026, + 0.22630385, + 0.234889, + -0.19369096, + -0.19630367, + 0.25744185, + -0.18537268, + -0.6672444, + 0.47188827, + 0.45130843, + 0.03640152, + 0.31295303, + -0.7102008, + -0.1564802, + -0.15416583, + -0.39292356, + 0.52072287, + -0.00957511, + -0.47905475, + 0.26119015, + 0.19736001, + 0.22808824, + -0.39047927, + -0.455849, + 0.07960488, + 0.5003706, + 0.4089726, + 0.3464138, + -0.1989831, + 0.16873224, + 0.21303013, + -0.23393095, + 0.0734084, + 0.435848, + 0.113742806, + -0.41508466, + 0.016575836, + 0.5017845, + 0.51748013, + 0.15761884, + 0.021903943, + -0.5734821, + 0.12263529, + -0.4108019, + -0.32617596, + 0.38697782, + 0.77620715, + -0.6619588, + 0.00979235, + 0.36449206, + -0.74780244, + 0.15545239, + 0.07746806, + -0.59904474, + 0.28962734, + 0.17714363, + 0.5895293, + 0.3093986, + 0.08548464, + 0.68950427, + -0.13456768, + -0.42814308, + -0.465526, + -0.092843145, + 0.4028162, + -0.028710458, + 0.3738959, + 0.6982794, + -0.4850294, + 0.2857722, + -0.15335646, + -0.15160239, + -0.20414379, + 0.1414167, + 0.11310426, + 0.04523526, + 0.08995154, + -0.51725155, + -0.07837768, + -0.30278635, + -0.81921023, + 0.33299914, + 0.31480002, + 0.31408125, + 0.039849605, + 0.20794922, + 0.30409575, + 0.76190394, + -0.23421805, + -0.16115662, + 0.36700964, + -0.6088547, + -0.2560282, + -0.026402792, + -0.09622548, + 0.38715774, + -0.24864174, + -0.09255743, + -0.8971276, + 0.0250038, + -0.33841705, + -0.7341436, + -0.20492166, + -0.05222474, + -0.2908612, + -0.5069264, + 0.109158605, + -0.29438928, + -0.52790755, + 0.36002368, + 0.44034433, + -0.3418596, + 0.718213, + 0.61163914, + -0.2995443, + -0.24969979, + 0.51525414, + -0.13071056, + 0.3202031, + -0.38726315, + 0.24688151, + -0.43100375, + -0.5277069, + 0.29559344, + -0.51337284, + -0.17143762, + 0.038890734, + 0.40109956, + 0.17898476, + 0.041215964, + -0.45131287, + 0.3137059, + 0.21929216, + 0.29829434, + 0.14079571, + 0.17013955, + -0.63374656, + -0.23131835, + -0.08551267, + 0.020216592 + ], + "2025-05-20T05:34:39.398066", + "2025-05-20T05:34:39.398066", + 33.8139686584, + -34.307434082, + -109.8262557983, + "3", + "ID: 12595295
Cluster: 3
Chunk: .\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimme..." + ], + [ + 11714, + "(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.\n\n(b) Verwenden Sie das Script test_steepest_descent.py .\n\nF\u00fchren Sie f\u00fcr verschiedene Startwerte und f\u00fcr verschiedene Toleranzen die Optimierung mit dem Steepest-\nDescent-Algorithmus durch.\n\nNotieren Sie jeweils die Anzahl der Funktionsaufrufe, die ben\u00f6tigt werden.\n\n(c) In dem Skript test_steepest_descent.py wird die Schrittweite mit dem Faktor a = 2 erh\u00f6ht bzw.\n\n1\/a = \u00bd erniedrigt.\n\nExperimentieren Sie mit verschiedenen a, z.B. a= 1.5\noder a = 3.\n\nWas beobachten Sie?\n\n45Musterl\u00f6sungen\n46\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\nM a* S*\n4 [4.\n\n1.667 6.283 6. ]\n\n38.7003\n8 [4.714 1.714 5.386 5.429] 1.835116\n16 [4.8 1.667 5.864 5.2 ] 2.0037\n32 [4.742 1.645 5.878 5.097] 0.075264\n64 [4.714 1.651 5.884 5.143] 0.233\n47\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\nL\u00f6sung: x* = (-4.0825, 0).\n\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.", + 18240, + 8746023, + null, + "md", + null, + [ + -0.3678096, + 0.22411136, + 0.14555797, + -0.42699647, + -0.729299, + 0.24891435, + 0.4685517, + -0.28782007, + 0.0039182007, + 0.33779606, + -0.33120748, + 0.55808645, + 0.5444058, + 0.027608246, + 0.08851585, + 0.5265253, + 0.1125632, + -0.078657985, + -0.16471888, + -0.8651752, + 0.34232825, + 0.29238293, + 0.58000296, + 0.3738271, + -0.053281233, + 0.2833863, + 0.17771712, + 0.2546254, + 0.19173825, + 0.3640164, + -1.1249534, + -0.62808365, + -0.20911168, + -0.7429463, + -0.23612238, + 0.031128652, + 0.08355768, + 0.49920803, + -1.0714387, + 0.2685635, + -0.7407983, + 0.34027272, + 0.057589408, + -0.14611419, + -0.7766918, + 0.26893753, + -0.23267646, + -0.6933191, + -0.048484992, + -0.7750932, + -0.47608018, + -0.5479562, + 0.6980775, + -0.13372378, + 0.07242524, + -0.92573684, + -0.46304497, + -0.44765055, + -0.016542159, + -0.08197684, + -0.206312, + 0.016311366, + -0.925002, + -0.12568606, + 0.6677194, + 0.071036585, + 1.1142404, + 0.017384283, + 1.0018773, + 0.00133482, + -0.27840173, + 0.634758, + 0.5802839, + -0.7605524, + -0.20455557, + -0.04038713, + 0.24859002, + -0.008373266, + 0.325014, + 0.35012645, + 0.4150449, + 0.4536388, + -0.4758337, + -0.26766813, + 0.15295926, + -0.23286396, + 0.67715883, + 0.88060784, + 0.38762388, + -0.2840984, + 0.13272654, + 0.09397071, + 0.19123562, + -0.19487503, + -0.0045328597, + 0.588555, + 0.03219355, + -0.11476211, + 0.24841958, + 0.24925984, + 0.15711085, + 0.10532148, + 0.3912235, + -0.8853935, + 0.075310834, + -0.494076, + -0.55151516, + 0.09978305, + -0.16531575, + 0.6700412, + 0.5069528, + -0.40286332, + -0.16228649, + 0.05990828, + 0.57297665, + -0.37969565, + -0.6679734, + 0.08180514, + 0.21972953, + 0.5694242, + 0.38082644, + 0.22479609, + 0.0020216443, + 0.49434677, + 0.53689814, + 0.49539545, + 0.08606393, + 0.4565222, + 0.0072135013, + 0.12637742, + 0.101515055, + -0.029388305, + 0.8617165, + -0.65296954, + -0.005246274, + -0.18843746, + -0.3285613, + 0.062149987, + 0.24110913, + -0.2830578, + -0.17067373, + -0.3850755, + -0.47518814, + -0.6953597, + 0.76148766, + 0.172775, + 0.046362113, + 0.8002584, + -0.08829208, + -0.49679655, + 0.05950617, + -0.059442427, + 0.7228303, + 0.70137143, + 0.017351463, + 0.4381916, + 0.94820493, + 0.005438257, + -0.05484689, + 0.11405181, + 0.15489933, + 0.23444295, + -0.85799915, + 0.03261217, + -0.018469501, + 0.12495635, + -0.052886948, + 0.14157408, + 0.83121943, + -0.8663431, + 0.33892405, + 0.043594994, + 0.22028501, + -0.043169703, + 0.09806814, + 1.2112548, + -0.16024297, + -0.71801597, + -0.11406754, + -0.055837423, + 0.5019528, + 0.3446591, + -0.03072898, + 0.05742063, + -0.6704931, + -0.22773243, + 0.3419827, + 0.14368197, + -0.084652215, + 0.25224182, + -0.067714304, + 0.20457816, + 0.18921226, + -0.009927638, + -0.6465068, + 0.271971, + -0.14164138, + -0.011513546, + -0.028339138, + -0.118608944, + 0.57998353, + 0.20205209, + 0.3259616, + -0.25774056, + -0.7522779, + -0.20399459, + -0.13177615, + -0.62510663, + -0.21027783, + 0.90771055, + 0.7177583, + -0.25513408, + -0.050829537, + 0.26926628, + -0.11782524, + 0.26412454, + -0.05102687, + -1.5365572, + -0.45302978, + 0.16255228, + 0.063613735, + -0.28642243, + 0.34522817, + -0.07101329, + 0.18005542, + -0.23682334, + 0.32415867, + 0.66335356, + 0.34608054, + -0.10468494, + -0.6694654, + -0.68839955, + -0.84516686, + -0.36476266, + -0.44299683, + -0.5964317, + 0.78207594, + -0.008276297, + -0.5981867, + 0.001056999, + 0.54307526, + -0.11397444, + -0.37990654, + -0.032238036, + -0.1376842, + -0.35169297, + 0.04135808, + 0.6256416, + 0.30124485, + 0.22195148, + -0.22071159, + -0.8043813, + 0.006213922, + 0.47676125, + 0.1049833, + -0.5621684, + -0.019654013, + 0.4216263, + -0.5494164, + -0.1278236, + -0.6237479, + 0.1324845, + 0.15146062, + 0.84333676, + -0.20212379, + 0.38633245, + 0.19855791, + 0.71972877, + -0.27934828, + 0.39083228, + -0.12750864, + 0.10830249, + -0.097761914, + 0.3528639, + 0.29329097, + -0.044711247, + -0.53218585, + 0.22838737, + 0.21223006, + -0.59300625, + 0.40613398, + 0.32882994, + -0.18848594, + -0.019406153, + -0.2230433, + 0.45763916, + -0.14360718, + 0.25143954, + 0.38984266, + 0.36529982, + -0.022876233, + -0.35925207, + 1.7798438, + -0.5238199, + -0.1401142, + 0.28656393, + -0.26484823, + 0.0066848993, + -0.27643174, + -0.2255847, + 0.44005957, + 0.65535617, + 0.22686455, + -0.08135609, + 0.55944777, + 0.5990618, + -0.16939652, + 0.13322672, + -1.2064099, + 0.6458739, + -0.46091852, + 0.30762303, + 0.19701488, + -0.5234082, + -0.17879483, + 0.24063437, + -0.05667635, + 0.42292443, + 0.095150985, + 0.15176065, + 0.14183438, + 0.7366917, + -0.036064304, + -0.43951753, + -0.027670555, + -0.24423136, + 0.57796323, + -0.0843677, + -0.88704884, + 0.31413665, + -0.7154766, + -0.062333897, + 0.21903536, + 1.197645, + -0.19913635, + 0.22721112, + 0.021787114, + 0.31952465, + -0.15354723, + -0.31043345, + -0.13725622, + 0.2909922, + 0.25442785, + 0.80317587, + -0.7394225, + -1.6850538, + 0.42473316, + 0.11797817, + 0.26467574, + 0.29278797, + 0.15541041, + 0.12741724, + 0.22435205, + -0.24607763, + -0.28285766, + 0.042361274, + 0.6792438, + 0.32505167, + 0.17487241, + 0.008075317, + -0.28720716, + -0.749232, + 0.25035363, + -0.39171287, + 0.2996157, + -0.16307858, + -0.27318275, + 0.66949147, + -0.7812344, + -0.075632304, + 0.017204536, + -0.38158864, + 0.2547915, + 0.78250456, + -0.5015506, + -0.25575796, + -0.50574535, + 0.32863018, + -0.4108349, + 0.013615236, + 0.46996215, + -0.5061204, + 0.014836654, + 0.26761582, + -0.16426851, + -0.20927489, + 1.8972657, + -0.10329004, + 0.025539964, + -0.5328487, + -0.19693592, + -0.2534776, + -0.38866043, + 0.07821511, + -0.16033472, + 0.18149069, + 0.50723135, + 0.16295336, + 0.520203, + -0.43038478, + -0.60534745, + 0.94256914, + 0.5229606, + 0.1552945, + -0.25919378, + -0.3098713, + -0.4715836, + -0.038957037, + -0.19593148, + 0.3008289, + 0.32643744, + -0.39156467, + 0.28155902, + -0.15090708, + 0.32126793, + 0.17733066, + 0.06456867, + 0.42270237, + -0.08058933, + -0.3072827, + 0.6373602, + 0.44913927, + -0.24639694, + 0.30038142, + -0.07149364, + -0.60085887, + -0.62378126, + -0.28695795, + -0.53931737, + 0.6431534, + 0.39609426, + -0.31124586, + -0.18503991, + 0.17078067, + -0.056517117, + 0.17211753, + 0.490376, + -0.2904827, + -0.18036674, + -0.56599855, + 0.017835133, + -0.16302752, + 0.22354655, + -0.4542738, + -0.12575115, + -1.008352, + -0.74524355, + 0.52247524, + 0.2563143, + 0.12293034, + 0.45703185, + -0.6626438, + -0.16453561, + -0.19931717, + 0.14595613, + -0.558118, + -0.26759505, + 0.0133200735, + 0.5464997, + -0.36390835, + -0.37997672, + -0.018119376, + -0.03083529, + -0.052278962, + 0.15711764, + -0.57445437, + -0.18539193, + -0.5665644, + 0.20388064, + -0.6541168, + -0.05488745, + 0.1817056, + -0.26302105, + 0.21622056, + 0.2556601, + 0.14937562, + -0.16698268, + 0.27469927, + -0.018344037, + 0.1636677, + 0.1771978, + 0.18749279, + 0.24506679, + -0.020724583, + 0.387089, + -0.122473106, + 0.09502612, + 0.08568658, + -0.5504361, + -0.39816844, + 0.68548656, + -0.32589632, + -0.0000523869, + 0.25058815, + 0.019605666, + -0.6262946, + 0.01327803, + 0.9252068, + -0.14782907, + 0.21190892, + -0.23213175, + -0.16593814, + 0.7776412, + 0.12256965, + 0.23838785, + -0.27695498, + 0.14072421, + -0.030359862, + -0.7250395, + -0.6847402, + 0.38624734, + 0.09885856, + 0.1049504, + 0.060403064, + 0.058530256, + 0.27757126, + 0.4074472, + 0.5028242, + -0.082754016, + -0.48310372, + 0.74997807, + -0.3301796, + -0.33007717, + 0.048770674, + -0.33890763, + -0.18934955, + -0.95521396, + 0.1361145, + 0.58137345, + 0.099846475, + -0.6041564, + 0.69763815, + 0.42434946, + -0.33427474, + 0.25779277, + 0.35542187, + -0.1382637, + -0.05941148, + -0.45265365, + 0.35144317, + -0.120817095, + 0.15743218, + 0.20331883, + 0.43101302, + 0.1828405, + 0.23666853, + 0.30883318, + -0.53761417, + 0.4168326, + -0.12895681, + 0.22766188, + -0.5186339, + -0.5453603, + -0.025924623, + -0.050195895, + -0.4113433, + -0.03609858, + -0.13337484, + 0.61745983, + 0.1509074, + -0.0059698224, + -0.87857985, + -0.091046125, + -0.85704845, + 0.38996726, + -0.6431917, + -0.3987604, + -0.8561114, + -0.021331646, + 0.4711954, + 0.058657736, + 0.18241066, + -0.33460218, + -0.18920857, + 0.3397018, + -0.110542685, + 0.2364493, + 0.5099128, + 0.33081958, + -0.08386848, + -0.14380571, + 0.40300876, + 0.2140873, + -0.079304025, + 0.7985577, + 0.097657435, + -0.18573123, + -0.37204546, + -0.07421698, + 0.06174642, + -0.2656743, + -0.53119665, + -0.048232056, + 0.30859625, + 0.50514776, + -0.13954012, + -0.26818717, + -0.38186908, + 0.04494473, + 0.13835034, + 0.1392388, + -0.52914774, + -0.2675972, + -0.49875128, + 0.17894325, + -0.45456898, + -0.69335073, + 0.013143882, + 0.16203654, + -0.21245885, + -0.7384571, + -0.28584552, + -0.40154034, + -0.21884315, + 0.31837517, + -0.38561904, + 0.10416128, + 0.33629104, + 0.7526697, + -0.76154226, + -0.029801756, + 0.040266108, + -0.3494204, + 0.26959726, + 0.56320876, + 0.47413453, + -0.5480745, + -0.10173443, + 0.2577141, + 0.12563378, + 0.45304897, + -0.0912993, + 0.3593891, + 0.62984586, + 0.42197144, + -0.39671102, + -0.3653083, + -0.6250508, + -0.18750538, + 0.48388448, + 0.72210497, + -0.06339631, + 0.11915733, + 0.39731792, + -0.13439238, + 0.64486164, + 0.15640941, + -0.42779243, + 0.07529897, + -0.13458411, + -0.14257619, + 0.43520615, + -0.089396596, + 0.12242659, + 0.20597519, + 0.11077414, + -0.05322638, + -0.24123682, + 0.14429295, + -1.1269975, + -0.6447196, + -0.62171316, + -0.74587154, + -0.078663796, + -0.8068668, + 0.6312601, + 0.23346364, + -0.2315292, + 0.085468486, + -0.33742338, + 0.27517933, + -0.45282257, + 0.5109709, + -0.38896942, + -0.21412842, + -0.3277836, + 0.30805543, + 0.5632294, + -0.9011104, + 0.2929179, + -0.49601147, + -0.6634845, + -0.24998194, + -0.020223372, + -0.5652537, + -0.24199864, + 0.107856266, + -0.15383366, + 0.07276025, + 0.068011396, + -0.60238016, + 0.21041946, + -0.53303915, + 0.29317427, + -0.21062952, + 0.17264742, + -0.6902411, + -0.46888602, + -0.49203944, + -0.18091854, + 0.11043791, + -0.033546783, + -0.7472969, + 0.64831495, + 0.19438292, + -0.12479889, + 1.2053995, + -0.2398505, + -0.5619322, + 0.19864756, + 0.32866433, + -0.05044725, + -0.20331208, + 0.36033756, + -0.44160834, + -0.14117077, + -0.2657167, + 0.22720161, + 0.30553618, + 0.21602675, + -0.18553075, + -0.72797275, + 0.99831, + -0.52407175, + -0.28368708, + -0.7280956, + -0.49955183, + -0.14538544, + 0.83912176, + -0.21748044, + -0.15573782, + 0.31637508, + -0.19315998, + -0.30434766, + 0.6987978, + -0.49236572, + -0.22806403, + -0.10609462, + -0.14750549, + 0.4000309, + 0.068926804, + 0.13784294, + 0.97443324, + 0.1797495, + 0.93045455, + -0.63066024, + 0.17389761, + -0.64109266, + -0.8960763, + -0.2640756, + -0.06678825, + -0.46671522, + 0.117288135, + 0.052430786, + -0.43994716, + 0.57637405, + 0.061848316, + 0.18838549, + 0.18612076, + -0.18824492, + -0.66636515, + -0.20893571, + -0.032661512, + 0.13970952, + -0.10278429, + -1.0974387, + 0.1402528, + 0.13878371, + -0.01663781, + -0.3513542, + -0.8949996, + -0.1265051, + 0.077980034, + 0.2914079, + 0.40969166, + 0.43848038, + 0.23543294, + 0.35803187, + 0.109440446, + -0.13036822, + 0.020616889, + -0.28012753, + -0.5201759, + 0.4856791, + 0.3286425, + 0.8966125, + 0.41561913, + 0.29593897, + 0.065431364, + 0.14549349, + 0.3014239, + 0.0492393, + -0.15931383, + 0.18611535, + -0.0064576752, + 0.5715438, + -0.43011832, + 0.07571235, + -0.29692504, + -0.092221454, + -0.062030867, + -0.28157824, + -0.5390036, + -0.28977257, + -0.071041875, + 0.0981367, + -0.29184252, + -0.2833457, + -0.45618072, + 0.18131319, + -0.2195445, + 0.7059897, + -0.19731158, + 0.13822216, + -0.20093991, + -0.08949226, + -0.07212529, + -0.026297985, + -0.40909356, + 0.78550416, + 0.6887458, + -0.2558626, + -0.4117956, + 0.14508699, + -0.04633792, + 0.041966163, + 0.48704344, + -1.5957401, + 0.17719781, + 0.013439601, + 0.052511312, + 0.08372782, + -0.22648823, + 0.108467676, + 0.1287182, + 0.13955343, + 0.5419213, + -0.21950135, + -0.50641274, + 0.119458824, + -0.36182642, + 0.4997866, + -0.22867505, + 0.19944578, + 0.5861369, + -0.1838091, + -0.3568781, + 0.35657734, + -0.15078011, + -0.18696868, + 0.25164935, + -0.14934285, + 0.2919904, + 0.50555235, + -0.7503699, + -0.2555865, + -0.077376425, + -0.1081697, + 0.33818665, + -0.05112584, + -0.4611317, + 0.35204726, + 0.3755425, + -0.1496095, + 0.2775311, + -0.14453304, + 0.3293343, + -0.2257966, + 0.19469005, + -0.8857268, + -0.035280302, + 0.35240868, + 0.27970234, + -0.6004595, + 0.11718616, + -0.22629058, + 0.3121088, + 0.8206786, + 0.12516652, + 0.22023453, + 0.040208317, + 0.1381906, + -0.6531981, + -0.008616332, + -0.41257447, + -0.4897079, + 0.2663996, + 0.09819694, + 0.41223788, + 0.056502216, + -0.2924536, + 0.1404714, + 0.035569716, + 0.23123023, + -0.2601275, + 0.57726634, + -0.43612653, + 0.48369145, + 0.3326028, + -0.021763384, + 0.06573943, + -0.1703394, + 0.2746827, + -0.12419963, + 0.8612882, + -0.21641538, + -0.029472556, + -0.35721824, + 0.06159352, + 0.8180829, + 0.6987596, + 0.56595796, + 0.39515093, + 0.26997817, + 0.24380773, + 0.02880174, + 0.2784828, + 0.30242598, + 0.20002434, + 0.058678307, + 0.08191423, + 0.79062206, + 1.0817858, + -0.023412256, + -0.08826092, + -0.43861562, + 0.6168989, + -0.09572536, + -0.006578341, + 0.4336514, + 0.81465113, + -0.3953828, + -0.39177614, + 0.09178447, + -0.98929536, + 0.5380173, + 0.5389707, + -0.0856336, + -0.019611456, + 0.41620967, + 0.65044355, + -0.50357616, + -0.012526657, + 0.28029284, + -0.24956997, + 0.27333137, + 0.08202867, + -0.19779143, + 0.093467966, + -0.07715279, + -0.056605816, + 0.28485316, + -0.13857056, + 0.5141893, + 0.17058949, + -1.0139135, + -0.02707772, + 0.5643165, + 0.3561577, + -0.18859388, + -0.2069366, + -0.5709614, + -0.097347945, + -0.11189282, + -0.4537786, + 0.7373613, + -0.05198635, + 0.63270897, + 0.19181007, + -0.01122836, + 0.19118078, + 0.46701136, + -0.23291092, + -0.72001076, + 0.89419436, + 0.10528708, + -0.5974056, + -0.07599875, + 0.20955473, + -0.09517202, + -0.05110279, + -0.0868803, + -0.78747714, + 0.073184654, + -0.2837519, + -0.22408068, + -0.23230089, + -0.17649184, + 0.23802061, + -0.3305582, + 0.707357, + -0.1628861, + -0.10195011, + -0.25700322, + 0.44107562, + -0.25177133, + -0.008856084, + 0.078548595, + -0.12433519, + -0.033410963, + 0.55317503, + -0.3450623, + -0.16450153, + -0.604919, + -0.13753518, + -0.8947691, + 0.15898514, + -0.5088476, + -0.10967581, + 0.18166427, + 0.0048026275, + 0.17079625, + 0.055713877, + -0.5802569, + 0.0007911176, + 0.0005876906, + 0.5397376, + 0.74722725, + 0.076544255, + 0.64574504, + -0.6378973, + 0.24237481, + 0.0059208646, + -0.48244172 + ], + "2025-05-20T05:34:59.416615", + "2025-05-20T05:34:59.416615", + 88.2828369141, + 84.2685241699, + -8.4168233871, + "3", + "ID: 8746023
Cluster: 3
Chunk: (x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n..." + ], + [ + 11715, + "1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale Minima f*\n[-1.38925764 -7.41822149] 1.3132611100220473\n[-1.38922156 3.91063 ] -0.9233486372581649\n[ 3.76097004 -1.79076623] -0.06792301515654611\n[ 3.76098637 -7.41815126] 2.836459612005422\n[-1.38926088 -1.79077318] -1.5911215163755672\nDavon ist das beste gefundene lokale Minima x* = [-1.38926088 -1.79077318] mit f* = -1.5911215163755672.\n\n48\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus.\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\nz.B. Startwert [4.5, 1.5, 0, 5 ]\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\nF\u00fcr die meisten Startwerte wird ein S(a*) < 10-8 realisiert bei ca.\n\n200 \u2013 400 Funktionsaufrufen.\n\nz.B.\nStartwert a0 = [3.69327012 1.467473 5.76522026 7.31055702]\na* = [4.735 1.658 5.795 5.119]\nS* =1.046512101321329e-08\n49\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren:\n(a)\n2 L\u00f6sungen:\n(b)\n1 L\u00f6sung: x= 4, y = 3\n(c)\n2 L\u00f6sungen:\n50\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.", + 18240, + 1458139, + null, + "md", + null, + [ + -0.33590606, + 0.39171347, + 0.3104508, + 0.10361929, + 0.33812582, + -0.89266545, + 0.2203859, + -0.17072962, + -0.38311207, + -0.5193819, + 0.09789546, + -0.028577767, + 0.9631888, + 0.6976565, + -0.3237031, + 0.42894217, + 0.1764155, + -0.10790475, + 0.4390532, + -0.23210269, + -0.51189566, + -0.07870508, + 0.607155, + 0.45995823, + -0.4367702, + 0.9425873, + 1.2920674, + 0.06832604, + 0.59638125, + 0.15249175, + -0.34862453, + -0.43116865, + -0.29870477, + -0.91613734, + -0.29049373, + -0.21590632, + -0.2930542, + 0.08318232, + -0.7841413, + -0.0034153927, + -0.7901054, + 0.61368895, + 0.12631243, + -0.29215825, + 0.42247868, + 0.6040616, + 0.27886987, + -1.1978732, + -0.24416664, + -0.5514975, + -0.57926816, + 0.2823675, + -0.3678563, + -0.5564819, + 0.40785637, + -0.45472288, + 0.0045371205, + -0.06573897, + 0.37535653, + 0.17278565, + -0.21359436, + -0.058760505, + -0.40548798, + -0.15494823, + -0.093890235, + 1.0526954, + 0.3185325, + 0.39896768, + 0.6471508, + 0.4597134, + -0.35048267, + 0.48255396, + 0.25813952, + -0.63369256, + -0.27337754, + -0.65566283, + 0.11761906, + -0.17589083, + -0.71219826, + 0.25374198, + 1.1541762, + 0.09933092, + 0.20385751, + -0.04254237, + -0.08918535, + -0.19576031, + 0.22483358, + 0.19787396, + 0.2404321, + -0.025957186, + -0.13484997, + 0.2730415, + -0.25445414, + 0.5330599, + -0.13038482, + 0.3874487, + -0.19044293, + -0.45442307, + 0.033644937, + 0.19034126, + -0.39600706, + 0.56566447, + -0.040557433, + -0.39816558, + 0.7161951, + -0.49254674, + 0.3461333, + 0.3090515, + -0.030412596, + 0.3122994, + 1.2697484, + 0.14168175, + -0.506121, + 0.52389926, + -0.010837641, + -0.59154004, + -0.59069806, + 0.20370388, + -0.15543158, + -0.31257522, + 0.1373198, + 0.38584834, + 0.106609546, + 0.48740098, + 0.13197376, + 0.06348309, + 0.38694394, + 0.8575028, + 0.18182376, + -0.19873917, + 0.4809254, + 0.5258416, + 0.3454337, + -0.25806275, + -0.20029357, + 0.049125016, + 0.3267058, + -0.45414025, + 0.18577082, + 0.1253999, + -0.66255164, + -0.50448304, + 0.108013205, + -0.418762, + 0.11707035, + 0.430934, + -0.49352115, + 0.026971685, + -0.3338327, + -0.33189088, + 0.13218048, + 0.09135047, + 0.41215834, + 0.46828347, + -1.2082564, + 0.26250207, + 0.23854397, + -0.17270845, + -0.13818276, + 0.14253643, + -0.029390574, + 0.9599662, + -0.43084943, + -0.30634317, + 0.21331799, + -0.3367448, + -0.6650989, + -0.20255336, + 0.94073933, + 0.11488612, + 0.4146423, + 0.20672353, + -0.13492694, + -0.2981984, + 0.004238449, + 0.13317117, + -0.0022086054, + -0.48821533, + -0.46299618, + 0.08836837, + -0.64553845, + 0.14289191, + -0.30086392, + -0.21818095, + 0.68341047, + -0.16812748, + -0.6347703, + -0.9230271, + 0.3478902, + 0.24960732, + -0.082797274, + -0.6342272, + 0.34937197, + -0.34813645, + -0.4743026, + -0.8953546, + 0.03705832, + -0.29891372, + 0.16870488, + -0.87467283, + 0.19414356, + 0.32681888, + 0.01969719, + -0.16106765, + 0.38122737, + 0.5729912, + -0.0047119167, + 0.10969442, + -0.020082496, + 0.29137334, + 0.42753476, + -0.07445496, + 0.2812643, + -0.28043538, + 0.42744085, + 0.44589993, + -0.26181003, + -0.11892925, + -0.24413949, + -0.037126876, + -0.029772237, + -0.4771371, + -0.3977548, + -0.20309207, + 0.07259096, + 0.10353623, + -0.61271036, + 0.21354672, + 0.13361123, + -0.14710839, + -0.12430452, + -0.21641652, + 0.0302229, + 0.18061854, + -0.3656264, + 0.8904599, + -0.07881095, + 0.4031285, + 0.17166355, + -0.0003245045, + 0.438467, + 0.041176476, + 0.78215593, + -0.53638214, + -0.2890119, + -0.12616298, + 0.3057408, + -0.57111543, + 0.1867647, + 0.5912349, + 0.7299374, + -0.11984831, + -0.19094998, + -0.26745826, + 0.51435226, + 0.632776, + 0.008805522, + -0.117792904, + -0.2087625, + -0.46639967, + -0.23401046, + 0.2640221, + 0.20766312, + 0.12164791, + -0.036320172, + 0.69862443, + 0.5222853, + 0.18709303, + -0.03745487, + 0.17772159, + 0.029548254, + 0.5356911, + 0.080552235, + -0.18985695, + -0.060920145, + -0.2523269, + -0.27250946, + 0.36531153, + 0.20142776, + -0.47303534, + -0.2952063, + -0.0676074, + -0.23673502, + -0.10643925, + -0.15354998, + 0.83791184, + -0.41829363, + 0.6375804, + 0.05150442, + 0.23957346, + 0.1909364, + 0.092406854, + 0.48399854, + -0.06581344, + -0.16266608, + 0.8553877, + 0.6186779, + -0.0045558214, + -0.12259734, + -0.0848625, + 0.90119827, + 0.3415705, + -0.07403641, + 0.114152424, + 0.31353518, + 1.1222613, + -0.33305246, + -0.8539586, + -1.2975045, + 0.21095358, + 0.16947955, + -0.14505096, + 0.24260502, + -0.23602599, + -0.028868921, + 0.548035, + -0.6153294, + -0.5094917, + 0.5805458, + 0.46327084, + 0.09499539, + 0.7213191, + -0.4820568, + -0.98985875, + -0.18374127, + -0.3119077, + 0.53249574, + -0.4696379, + -0.6569456, + 0.34249347, + -0.20338145, + -0.082161896, + 0.24956033, + 0.9542712, + 0.79970706, + 0.29157048, + -0.19261406, + -0.0028426573, + -0.28651705, + -0.1366284, + -0.3551082, + -0.44949642, + -0.42842808, + 0.3660117, + -0.36459392, + -0.4907967, + -0.11498898, + -0.44861293, + 0.24950483, + -0.14016429, + -0.16340521, + -0.07640612, + -0.0063108653, + -0.1635489, + -0.23960221, + 0.5497074, + 0.17916581, + 0.094532125, + 0.029509056, + -0.29030287, + -0.812735, + -0.27146292, + 0.32525358, + -0.43934125, + -0.4085723, + -0.4335987, + -0.335433, + 0.097798556, + 0.25620508, + 0.14483842, + 0.06562293, + -0.8902208, + 0.31216612, + 0.091096535, + -0.25931254, + 0.8130123, + -0.23010269, + -0.08069119, + -0.08905424, + 0.41154766, + 0.28664237, + 0.019053068, + 0.53550744, + 0.5910045, + 0.30451956, + -0.06331325, + 2.0988564, + -0.28108147, + -0.5976995, + -0.34309804, + 0.06326796, + -0.33786988, + -0.010220356, + -0.5256783, + -0.10211191, + -0.63157016, + 0.4036534, + 0.4906702, + 0.33467448, + -0.33670768, + -0.121758714, + 0.6700231, + 0.35760862, + -0.16497983, + -0.20975728, + -0.11325974, + -0.13261975, + -0.2896855, + -0.37124407, + 0.0099544525, + 0.30961758, + 0.44689175, + -0.2339319, + 0.023848332, + -0.13977788, + 0.20729817, + 0.1875785, + 0.08764145, + -0.08021545, + 0.22202978, + 0.12298653, + 0.6594626, + 0.09592599, + -0.13178842, + -0.09410121, + 0.4552377, + -0.43803436, + 0.20822833, + -0.53761524, + -0.031916007, + 0.21882284, + 0.10170132, + -0.009566713, + 0.7311339, + -0.0684986, + 0.049934126, + 0.3000583, + -0.026554484, + -0.39686638, + -0.70861316, + -0.027880117, + 0.35499468, + -0.11207831, + -0.499765, + -0.48348868, + -0.34388494, + -0.48105007, + 0.60503066, + -0.39658645, + 0.3469543, + -0.47920948, + 0.45409623, + 0.14348108, + -0.14048831, + -0.13981132, + 0.33521798, + -0.38107952, + 0.4963853, + 0.21793434, + 0.20167802, + -0.021880299, + -0.0005648248, + 0.48072758, + -0.6254387, + 0.097713254, + -0.82566947, + -0.10073705, + 0.1852338, + 0.38262045, + 0.09806475, + -0.2532496, + 0.07733476, + 0.11392352, + 0.22440103, + 0.08947565, + -0.0533663, + 0.2434976, + -0.15852576, + -0.19006477, + 0.32597095, + 0.6828344, + -0.049222954, + 0.42188156, + 0.19306275, + 0.06499714, + -0.018552758, + 0.5563857, + 0.40176, + -0.43232685, + -0.26301527, + 0.24536012, + -0.20925102, + -0.4339945, + 0.49012265, + 0.60176855, + -0.04978729, + -0.4828191, + 0.6418216, + 0.6538972, + 0.15746002, + -0.14003786, + 0.11694231, + 0.13776672, + -0.0044563813, + -0.26711693, + -0.43342102, + 0.2247397, + -0.26810363, + -0.13863604, + -0.33313075, + 0.3965034, + 0.32268012, + 0.19370021, + -0.46696082, + -0.22803703, + 0.48051804, + 0.05247999, + 1.0965937, + 0.13089259, + 0.2214207, + 0.41531175, + 0.4098714, + -0.30968416, + 0.21849532, + -0.04561331, + -0.060643367, + 0.17127791, + -0.46931973, + 0.21867254, + 0.81192017, + -0.23123172, + 0.3150143, + 0.30197603, + -0.40323567, + 0.46398234, + -0.37004718, + -0.7672908, + 0.33356816, + 0.006004675, + 0.21875018, + -0.124409646, + 0.07365078, + 0.24705392, + 0.12747845, + -0.12633014, + 0.16563326, + 0.07847252, + -0.056840662, + -0.49085456, + -0.52627397, + -0.08522316, + -0.6001328, + -0.8961967, + 0.015215516, + -0.1612459, + 0.37144473, + 0.5723836, + -0.4492511, + 0.26481628, + 0.22826286, + -0.005494058, + -1.2470425, + 0.35437542, + -0.78730905, + 1.0606828, + -0.46004397, + -0.26997054, + -0.3245129, + -0.06822033, + 0.9209056, + 0.011362463, + -0.30425593, + -0.7517366, + 0.13880777, + 0.27413028, + -0.1933576, + 0.2856955, + 0.23537765, + 0.6796595, + -0.11252994, + -0.24845043, + 0.3977719, + -0.0007769503, + -0.19451416, + 0.67448795, + 0.18295689, + -0.17913908, + -0.37656146, + -0.13019025, + 0.025544984, + 0.33852187, + -0.020727117, + -0.2564197, + 0.23636548, + 0.0872423, + 0.5113266, + 0.05294607, + 0.18992794, + 0.045519724, + 0.20268407, + 0.4374593, + -0.15545417, + -0.47415355, + 0.84578127, + -0.3037172, + 0.18228385, + -0.76951, + 0.3769554, + 0.18413964, + -0.34036025, + -0.7329282, + 0.1499577, + -0.384867, + -0.277074, + -0.078333884, + 0.43173605, + 0.024292514, + -0.16447209, + 0.10052106, + -0.079747334, + 0.5683817, + 0.19753318, + 0.40993354, + -0.14491975, + 1.0662547, + 0.7620299, + -0.8503555, + 0.036169294, + 0.39674735, + -0.32896972, + 0.47479004, + 0.64093304, + -0.4212622, + 0.445233, + 0.06142871, + -0.0031448603, + -0.03849586, + 0.23456362, + 0.29214394, + -0.15261322, + 0.68684715, + -0.06772319, + -0.13080488, + -0.046719633, + -0.9372045, + 0.29992792, + 0.22437409, + 0.5691649, + 0.008122586, + 0.02630509, + -0.246279, + 0.07682158, + 0.040924773, + -0.8297949, + -0.5058807, + -0.017141134, + 0.054919317, + -0.07830569, + 0.17229193, + -0.35661116, + -0.17654051, + -0.6083153, + 0.27162513, + 0.11233452, + 0.370967, + -0.22726128, + -0.08474107, + -0.05056624, + 0.27057815, + 0.14319366, + 0.50220823, + 0.2941692, + 0.10012668, + -0.50113165, + 0.5606267, + -0.26413903, + -0.5565119, + -0.3262282, + -0.481016, + -0.5187347, + -0.08354116, + 0.23001601, + -0.36792675, + -0.30980104, + 0.07762201, + -0.22544423, + -0.08877986, + 0.0025421903, + -0.5411843, + -0.3103168, + -0.79468703, + 0.38452345, + 0.1135299, + 0.019838817, + 0.0659729, + 0.41883272, + -0.09735884, + -0.8815488, + -0.37238622, + -0.22409506, + -0.32672265, + 0.2328353, + -0.35833317, + 0.48806155, + -0.16146304, + -0.005971439, + 0.2583304, + -0.57497644, + -0.63827735, + 0.1314214, + 0.20837368, + -0.17517, + -0.19427724, + -0.06900087, + 0.092233494, + -0.47418278, + -0.3864608, + -0.28755224, + 0.32606325, + 0.042186104, + -0.50984144, + -0.47762856, + 0.68613154, + 0.28856537, + -0.6695468, + -0.34591237, + 0.41832972, + 0.013998017, + -0.40121156, + -0.16996554, + 0.19653541, + -1.2125323, + -0.27781367, + -0.43350682, + -0.1131915, + -0.5043674, + 0.14370209, + 0.12693411, + -0.15184724, + 0.39240173, + 0.3629789, + 0.7289698, + 0.25402313, + -0.5330629, + -0.7510887, + 0.11286207, + 0.35968614, + 0.14193441, + -0.37580726, + -0.0049812347, + 0.00419908, + -0.26867425, + 0.039306276, + -0.18077782, + -0.23572503, + 0.91016686, + 0.03585251, + 0.448039, + 0.23250401, + -0.059245557, + -0.42372322, + -0.23279202, + 0.23459269, + 0.03195946, + -0.12765855, + -0.6202953, + 0.24968916, + 0.55304074, + 0.33581388, + -0.2941309, + -0.30869645, + -0.6403418, + 0.031887807, + 0.029901545, + -0.026063934, + 0.69973433, + -0.43355486, + -0.2034586, + -0.85406464, + -0.12872577, + 0.20614317, + 0.19064388, + -0.14787778, + 0.22580391, + 0.22506404, + 0.24838386, + 1.081974, + 0.1729262, + -0.018203596, + -0.19330841, + 0.72590435, + -1.4968921, + 0.004720202, + -0.07888028, + -0.47248036, + 0.49262154, + -0.34478003, + 0.23523398, + -0.107730284, + -0.8425615, + 0.2613603, + -0.40432376, + -0.27694544, + -0.65224814, + 0.7424147, + -0.4026419, + -0.64835334, + 0.21238434, + -0.09683728, + -0.29091868, + -0.7402414, + 0.3598189, + -0.29986382, + 0.15446621, + -0.1919071, + 0.25922272, + 0.22927418, + -0.032613564, + -0.33442527, + -0.5190184, + 0.37727833, + 0.07692185, + -0.26261303, + -0.110283166, + -0.16719837, + -0.0015096199, + -0.076535225, + -0.3241052, + 0.26163572, + -0.10726448, + -0.06968711, + -0.13368641, + 0.19738178, + -0.11340683, + -0.45369267, + 0.020275012, + 0.60410017, + -0.9112382, + 0.16955017, + -0.17485043, + -0.1865263, + 0.19080782, + -1.5234046, + -0.10345366, + -0.052331753, + 0.23880506, + 0.53663546, + -0.24265045, + -0.26531696, + 0.11780984, + -0.30664426, + 0.41968122, + -0.072069414, + 0.28039533, + -0.7664505, + 0.025151275, + 0.25613505, + 0.24604593, + 0.16977641, + 0.47325727, + 0.3389876, + 0.37681887, + 0.38041916, + -0.32667252, + 0.8149042, + -0.25926495, + 0.06907653, + -0.34268373, + -0.11257311, + -0.46087345, + -0.15273844, + 0.4997358, + -0.4539106, + 0.27756402, + 0.49088773, + -0.6158563, + 0.59985936, + -0.060182884, + 0.202691, + -0.07031589, + 0.21616141, + 0.5854108, + -0.5146055, + -0.009330824, + 0.31469998, + 0.5504163, + -0.076560006, + 0.02636834, + -0.47711086, + -0.16173875, + -0.120844685, + 0.006263092, + 0.5575075, + -0.2166308, + 0.35936823, + -0.21399754, + 0.22859916, + -0.41885504, + 0.34277546, + -0.123748906, + 0.20251282, + 0.2581409, + 0.020416893, + -0.6653402, + 0.05591305, + -0.44808155, + -0.096292466, + 0.8243559, + -0.1253737, + -0.07283937, + 0.19161347, + -0.13836502, + -0.3491693, + -0.029038519, + -0.12815437, + 0.31894088, + 0.31654105, + 0.43801534, + 0.26650214, + 0.48057893, + -0.28846806, + 0.53230786, + 0.16099234, + -0.051647183, + -0.29198918, + 0.1318759, + -0.10782446, + -0.28303936, + 1.1760926, + 0.25910196, + -0.13603283, + 0.06371283, + 0.41240427, + 0.21658808, + -0.5014255, + -0.6016535, + 0.07360568, + -0.21727075, + 0.27255863, + 0.1077101, + -0.2996914, + 0.12098016, + -0.14527807, + 0.898971, + 0.09592983, + 0.08159387, + 0.40850806, + -0.10489434, + -0.13433808, + -0.35191378, + 0.74057966, + 0.37995386, + 0.025303882, + 0.16753542, + -0.53967506, + -0.2648382, + -0.433977, + 0.42190063, + 0.3583233, + -0.14538418, + -0.012023427, + -0.18422373, + 0.13012066, + -0.63594425, + 0.30961394, + 0.093961, + -0.2407747, + -0.2667321, + -0.4671023, + -0.3149746, + 0.022633713, + 0.46642184, + 0.2163873, + 0.4074552, + 0.33905888, + -0.6657157, + -0.68455285, + -0.80516523, + -0.11686253, + 0.28140026, + -0.10913436, + -0.12661463, + -0.6720218, + -0.7079563, + -0.12829784, + -0.11200719, + 0.24317831, + -0.16509874, + -0.56251854, + 0.4119153, + -0.26087627, + -0.295765, + 0.43291384, + -0.098367766, + 0.52235484, + 0.5432571, + 0.5161535, + 0.28989768, + -0.50106823, + -0.09825129, + 0.34641367, + 0.14701648, + -0.6121292, + 0.08132542, + -0.36293986, + -0.2979607, + -0.038438633, + 0.05261112, + -0.23835163, + 0.2882274, + 0.33453023, + 0.39790174, + -0.5788158, + 0.2863186, + 0.13673428, + 0.44206855, + 0.59880894, + -0.018302038, + -0.05376276, + -0.35173792, + -0.61260134, + 0.2578006, + -0.41292694, + -0.75261146 + ], + "2025-05-20T05:35:22.500768", + "2025-05-20T05:35:22.500768", + -10.2018480301, + 81.8802947998, + 117.4437103271, + "5", + "ID: 1458139
Cluster: 5
Chunk: 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale..." + ], + [ + 11716, + "Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukturen einfach und doppelt verkettete Listen (evtl.\n\nFIFO u LIFO) M. B\u00fcnner B3.02\n8 21.02.2025 13:30-15:00 Fr (evtl.\n\nFIFO u LIFO) Bin\u00e4re B\u00e4ume und Graphen M. B\u00fcnner B3.02\n9 27.02.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n9 28.02.2025 13:30-15:00 Fr 1.\n\nHeaps und Heapsort 1.1 Heaps M. B\u00fcnner B3.02\n10 06.03.2025 13:30-15:00 Do 1.1 \u00fcben und 1.2 Heapsort M. B\u00fcnner B3.02\n10 07.03.2025 13:30-15:00 Fr 1.2 Heapsort mit Python M. B\u00fcnner B3.02\n11 13.03.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n11 14.03.2025 13:30-15:00 Fr 3.\n\nNicht-konvexe Optimierung in einer Dimension Parameterscan, Bisektionen M. B\u00fcnner B3.02\n12 20.03.2025 13:30-15:00 Do Modifizierter Newton M. B\u00fcnner B3.02\n12 21.03.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n13 27.03.2025 13:30-15:00 Do Schrittweitensteuerung M. B\u00fcnner B3.02\n13 28.03.2025 13:30-15:00 Fr Straffunktionen M. B\u00fcnner B3.02\n14 03.04.2025 13:30-15:00 Do \u00dcbungen M. B\u00fcnner B3.02\n4.\n\nReelwertige Optimierung in N Dimensionen 4.0 Definitionen M. B\u00fcnner B3.02\n14 04.04.2025 13:30-15:00 Fr 4.1 Parameter-Scan\n17 24.04.2025 13:30-15:00 Do 4.2 Downhill-Simplex-Algorithmus M. B\u00fcnner B3.02\n17 25.04.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\n18 01.05.2025 13:30-15:00 Do 4.2 Dowhill-Simplex L\u00f6sung von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.", + 18240, + 1720502, + null, + "md", + null, + [ + -0.6860801, + -0.3485546, + 0.46395817, + -0.20441821, + -0.17239648, + 0.5258232, + -0.17315537, + -0.06618009, + -0.091196164, + -0.3730068, + -0.043280527, + 0.5113549, + 0.4027665, + -0.36744648, + -0.4478888, + 0.60762215, + -0.22295806, + 0.7349587, + 0.086457334, + -0.27553374, + -0.6360301, + -0.048350893, + -0.12348564, + 0.6529018, + -0.26412815, + 0.40382835, + -0.15250124, + 0.33308154, + 0.7291152, + 0.3976206, + 0.37770534, + 0.26793548, + -0.23241341, + -0.40180683, + -0.13164178, + 0.75910014, + 0.57518876, + -0.18396497, + -0.70033646, + 0.30310062, + -0.94096315, + -0.015046481, + -0.47506946, + -0.044394616, + 0.5435846, + 0.1603361, + -0.967958, + -0.10958026, + 0.3257379, + -0.078564085, + 0.16164842, + 0.11590589, + -0.8159819, + 0.26658115, + 0.3214972, + -0.48644543, + 0.114687875, + -0.7085749, + 0.098047815, + -0.980673, + -0.032232814, + -0.05258547, + 0.022156134, + -0.106025405, + 0.42912948, + 0.03945327, + 0.08103447, + -0.24689955, + 0.5330127, + 0.45275176, + -0.4095543, + 0.14782739, + 0.19674322, + -0.6879161, + -0.30199474, + -0.23333098, + -0.32973096, + -0.4196811, + -0.093533605, + 0.31919545, + 0.8372393, + 0.027855966, + -0.311835, + 0.3718544, + -1.0823565, + 0.09732392, + 0.060192727, + -0.21456935, + 0.22497958, + -0.30766487, + 0.19325899, + 0.17108542, + -0.23097503, + 0.63292223, + 0.010815224, + 0.106230825, + 0.28183043, + 0.6241955, + 0.08298084, + -0.34695968, + 0.2996233, + 0.16239077, + -0.70189357, + 0.5480686, + -0.13229646, + 0.0007576123, + 0.8606017, + 0.170947, + -0.5987367, + -0.10136402, + 0.60594875, + 0.5036453, + 0.4994106, + 0.19977245, + -0.47415957, + -0.37461323, + -0.6320662, + -0.028156422, + -0.024673622, + 0.22961576, + 0.07641259, + -0.2545646, + 0.3052471, + -0.28090623, + -0.16017857, + 0.042913407, + 0.8044146, + 0.7114475, + -0.0642388, + 0.99027973, + -0.07886279, + 0.06447899, + -0.32335612, + 0.0001365487, + -0.28215742, + -0.13375168, + -0.39451405, + -0.16909838, + -0.11682804, + 0.120517135, + 0.07318341, + -0.17162478, + -0.46246165, + -0.35330614, + 0.10484846, + 0.24791951, + -0.12731892, + -0.50783664, + 0.3618289, + -1.0982708, + 0.09533071, + -0.1883993, + 0.72585833, + 0.53216237, + -1.0699661, + -0.6406414, + -0.4135726, + 0.7534077, + -0.0187695, + -0.34824085, + -0.18823946, + -0.41106436, + 0.09401887, + 0.18871403, + -0.2814437, + -0.10960567, + -0.8113512, + -0.46214312, + 0.25103912, + 0.0013840524, + 0.3335204, + 0.5888298, + -0.2050673, + 0.13162608, + -0.16718927, + 0.61101454, + -0.31022134, + 0.48997703, + 0.006404396, + -0.499426, + 0.048823413, + 0.39079463, + -0.20261157, + 0.37737855, + 0.2919023, + -0.17956193, + -0.7258667, + -0.257869, + -0.14300701, + 0.20836586, + -0.4788742, + -0.20069444, + -0.0043600798, + -0.92583555, + 0.24084401, + -0.25526688, + 0.12948486, + 0.664255, + -0.28819323, + -0.06161815, + 0.031459633, + 0.38797498, + 0.52117515, + 0.04604868, + -0.06253423, + -0.43427673, + -1.1362423, + 0.62175083, + -0.22730468, + 0.27340862, + -0.27601793, + -0.35191455, + -0.51655614, + 0.2329652, + 0.1403372, + 0.006029185, + 0.39278388, + 0.1798011, + 0.39050344, + 0.07474396, + 0.09279763, + 0.2761983, + -0.27216065, + -0.3841997, + 0.019106079, + 0.3840283, + 0.13505271, + 0.34418413, + -0.19022708, + 0.08186449, + 0.21895693, + -0.24413255, + 0.32325014, + -0.26621217, + 0.19116148, + -0.29064533, + -0.023943014, + 0.01408577, + 0.4359628, + 0.3230834, + -0.16144198, + 0.02921491, + 0.5623311, + -0.22518592, + -0.48292437, + -0.41794583, + 0.41864115, + -0.13766113, + 0.5236155, + 0.55685955, + 0.37707752, + -0.37464654, + 0.08642087, + -0.2447605, + -0.3685829, + -0.030297473, + 0.563435, + -0.14187954, + -0.842044, + 0.15359634, + -0.36064434, + 0.2973316, + 0.03557551, + 0.19956698, + -0.23925109, + -0.17533791, + 0.2213535, + -0.40917885, + -0.26059127, + -0.068692796, + 0.10054211, + 0.030156832, + 0.0013911054, + 0.36337513, + -0.24408403, + 0.23329794, + 0.1942243, + -0.32621187, + -0.26874563, + -0.124667406, + 0.11869365, + -0.24760775, + 0.1753402, + -0.7036072, + -0.49275708, + 0.003779618, + 0.34992558, + 0.24649972, + 0.17034328, + 0.105575, + -0.16810402, + -0.5526359, + 0.78009427, + 0.22755045, + 0.57721543, + -0.037881676, + -0.043095045, + -0.04691398, + 0.26173007, + -0.6536579, + 0.19095558, + 0.56185293, + 0.3144775, + 0.033251487, + 0.3466827, + 0.27645966, + -0.10950956, + -0.15846083, + -0.13779193, + -0.058052097, + -0.056354437, + 0.2384865, + 0.7874806, + -0.24707839, + -0.0948301, + -0.0103689125, + 0.11410369, + -0.562285, + 0.43039906, + 0.017447397, + 0.31779972, + 0.73132986, + -0.35151857, + -0.16058862, + -0.4051296, + 0.009876985, + -0.2042031, + 0.012267202, + -0.353221, + -0.30619404, + 0.048097763, + -0.3485511, + 0.35861322, + 0.31316483, + -0.26327837, + -0.41485885, + -0.34626505, + 0.99694973, + -0.056456424, + -0.3024091, + 0.7581393, + -0.5269681, + 0.18442762, + -0.61693645, + -0.30976468, + 0.1569087, + 0.54342616, + -0.21989511, + 0.17409766, + 0.53342974, + -0.083186276, + 0.13011861, + -0.59493315, + -0.415506, + 0.0015234202, + 0.4974453, + -0.061597507, + -0.6457294, + -0.4822651, + 0.22157495, + 0.11033867, + -0.23296547, + -0.1290575, + -0.026239492, + -0.063676514, + -0.057714008, + -0.07190033, + -0.008416915, + -0.38685182, + -0.10297019, + 0.0004220549, + -0.356672, + -0.29946795, + -0.34350997, + 0.11906559, + -0.7911113, + -0.41706347, + -0.26543042, + -0.07129728, + 0.13572657, + 0.430287, + 0.09431683, + 0.33169484, + 0.29210016, + -0.02444471, + 0.15620321, + 2.029257, + -0.21317169, + 0.7233217, + -0.25526613, + 0.5971234, + -0.09578345, + 0.11863645, + 0.27826366, + -0.6018005, + -0.3623148, + -0.110946335, + -0.34779453, + -0.14536633, + -0.25476557, + 0.30440843, + 0.08087215, + 0.043604422, + -0.3100603, + -0.13520136, + -0.06687803, + -0.026638012, + 0.077062584, + -0.2284721, + -0.9444294, + 0.024161618, + 0.369872, + 0.20965564, + -0.17028984, + 0.07078336, + 0.01368865, + -0.3090827, + 0.017295305, + -0.09061946, + 0.08116731, + -0.15135634, + 0.36598223, + 0.035531096, + 0.2985763, + -0.090075664, + -0.5875514, + -0.1595432, + -0.6139428, + 0.320748, + -0.15143462, + -0.032016832, + 0.09553331, + -0.27477115, + 0.019357543, + -0.15979686, + -0.5698217, + 0.13376307, + -0.08427775, + -0.32124844, + -0.2647876, + 0.6624501, + -0.19917205, + 0.02146909, + -0.6466082, + -0.073993176, + -0.9885278, + -0.4193592, + 0.2468539, + 0.024406554, + 0.5287464, + 0.07563445, + -0.16637278, + -0.11358879, + -0.20569226, + 0.011063298, + 0.10000098, + -0.31387419, + 0.5456193, + 0.34747505, + 0.26594344, + 0.16782577, + -0.4839821, + -0.63927335, + -0.19178826, + 0.27510977, + -0.067705184, + 0.49221545, + -0.59542143, + 0.20466644, + -0.44972497, + -0.07890808, + -0.42398483, + -0.043234043, + 0.21367003, + -0.2132347, + -0.056402788, + 0.15442462, + -0.36094022, + 0.048838355, + -0.08287494, + -0.24208526, + -0.38290033, + 0.23209488, + 0.15425287, + 0.20316578, + -0.27841163, + 0.43552342, + -0.18721311, + 0.17789155, + -0.31993422, + -0.35306036, + 0.25398663, + 0.01213206, + 0.31121194, + 0.33026677, + -0.4265131, + -0.5230213, + 0.0055217, + 0.8855003, + 0.4653291, + -0.44568247, + 0.08404093, + -0.18140033, + -0.2040696, + -0.19184278, + -0.49080408, + 0.10910199, + -0.52560747, + -0.19274965, + -0.31321326, + 0.21505879, + 0.46277383, + -0.10848859, + 0.2476551, + 0.1635314, + 0.28406337, + -0.44451958, + 0.06298702, + -0.3804049, + -0.40523404, + 0.67032033, + 0.09428958, + -0.17903516, + 0.34972286, + 0.43184057, + -0.13443932, + -0.07969784, + 0.057638515, + -0.18940887, + 0.6095914, + 0.06707671, + 0.43615067, + -0.11964873, + -0.34688914, + 0.18390676, + 0.21178079, + -0.2127536, + 0.47575635, + -0.12537812, + 0.13106315, + 0.04816245, + 0.18369582, + 0.56648314, + 0.02633335, + -0.30112267, + -0.21021608, + 0.62334394, + -0.56254214, + 0.50711113, + 0.026362956, + 0.37148467, + -0.30734268, + 0.13791992, + 0.18387683, + -0.3029835, + -0.18743064, + 0.2512297, + -0.05024031, + -0.12411865, + 0.1298092, + -0.12842037, + 0.0015813485, + 0.42588708, + -0.13815619, + 0.11098805, + 0.39076093, + -0.20858353, + 0.12424139, + 0.06438958, + 0.16825227, + -0.08843251, + -0.40865195, + -0.5351391, + 0.14558966, + 0.59570223, + 0.14352679, + 0.5572146, + 0.078978226, + 0.24309309, + -0.06900851, + -0.4133992, + 0.76439196, + -0.638155, + -0.39495802, + 0.12977988, + -0.54981637, + -0.1782025, + -0.008346694, + 0.009326126, + -0.048258714, + 0.5410699, + 0.29433548, + -0.21673045, + -0.093735486, + -0.022244994, + 0.39394453, + 0.054438837, + -0.22593369, + 0.36207658, + -0.06334727, + 0.21071163, + 0.047024548, + 0.3905145, + 0.8402073, + -0.19227402, + 0.12917095, + 0.38638166, + 0.13610038, + -0.037453897, + 0.7156793, + 0.030355264, + 0.04843393, + 0.009829104, + -0.44319516, + 0.13311364, + 0.2541525, + -0.046379313, + -0.2808207, + -0.34123662, + 0.21512434, + 0.6074028, + 0.34798157, + -0.10129495, + 0.44183388, + 0.34999934, + 0.42964444, + 0.32243028, + -0.16277914, + 0.22861466, + -0.12166809, + 0.5333321, + 0.48339283, + -0.25110775, + 0.4819685, + 0.37097082, + -0.32969442, + -0.024265073, + 0.78415334, + 0.25793454, + 0.16162944, + -0.087269865, + -0.33500057, + -0.3261803, + 0.5518687, + -0.90507007, + -0.013383376, + -0.001977086, + 0.0024818778, + -0.065115415, + 0.09790979, + 0.18072376, + -0.0738818, + -0.11028995, + -0.600401, + 0.04543043, + 0.25311455, + -0.0031429231, + -0.20072408, + 0.27386862, + -0.21350135, + 0.08375318, + -0.12114306, + 0.43434772, + 0.17924203, + 0.31343308, + 0.35821825, + 0.35753828, + -0.3355286, + 0.18939859, + 0.109726354, + -0.14672968, + 0.00075607, + 0.3742777, + -0.3500672, + 0.1728265, + -0.066718504, + 0.103530705, + -0.11454057, + 0.23822464, + -0.19348122, + 0.16772825, + -0.33940458, + 0.445262, + -0.55615187, + 0.02941596, + 0.031251326, + 0.054873712, + -0.3686113, + -0.09899491, + -0.52229613, + -0.74973345, + 0.12660062, + -0.0734586, + -0.13181083, + -0.20107585, + 0.0026498586, + 0.10669604, + -0.24962789, + -0.18521641, + 0.33509785, + -0.31328562, + 0.10531768, + -0.06530452, + -0.4216859, + -0.14304638, + 0.25585204, + 0.20474237, + -0.019952867, + -0.24179775, + 0.04544133, + -0.43620762, + 0.22009724, + -1.0078866, + 0.31539172, + -0.055549443, + -0.15128395, + -0.46001205, + -0.26822767, + -0.15610215, + -0.28285488, + -0.3897249, + 0.6116927, + 0.5115852, + -0.16646034, + -0.51120347, + 0.050354287, + -0.13055253, + -0.14442888, + -0.24128015, + 0.17524274, + 0.37185687, + -0.09662709, + 0.2211615, + 0.23827557, + 0.046966955, + -0.9924135, + 0.21720257, + 0.22302425, + -0.09668941, + 0.10737849, + -0.16213062, + 0.31022477, + -0.54522794, + -0.31969857, + -0.38858533, + 0.060322884, + -0.22654155, + -0.49537724, + -0.15491302, + 0.2663998, + 0.28780505, + 0.54319113, + 0.5756062, + -0.28980452, + 0.04658731, + 0.3487832, + 0.66586655, + 0.33021766, + 0.09306145, + -0.2509511, + -0.2661513, + 0.54346806, + -0.41898304, + -0.38904563, + 0.18791656, + -0.3061723, + 0.43146136, + 0.3519523, + 0.0027168468, + -0.3259218, + -0.6692024, + 0.1373967, + -0.09519786, + -0.25879303, + 0.23446402, + 0.3898967, + -0.67651945, + -0.03949001, + -0.41109696, + 0.35135323, + 0.3674627, + 0.075010106, + -0.09426131, + -0.19750182, + 0.5369876, + 0.06403425, + 0.41882786, + 0.0014929995, + 0.36894122, + 0.049361043, + 0.16047618, + -0.9077335, + 0.038370397, + 0.09435318, + 0.19818088, + 0.17694972, + -0.21300194, + 0.47215307, + -0.062955394, + 0.35617256, + 0.29666927, + 0.40636548, + 0.17498729, + -0.26456627, + -0.08921361, + 0.13839418, + 0.11258583, + -0.00842293, + 0.13503903, + -0.34412557, + 0.25042546, + 0.0037803426, + -0.010467604, + 0.27210462, + -0.1902479, + 0.012865007, + -0.39220074, + 0.20186968, + -0.2074265, + 0.005490862, + -0.07258669, + -0.094529174, + -0.08461975, + 0.6929088, + 0.30651134, + -0.4974994, + 0.16395596, + 0.2634684, + -0.14254937, + 0.12844166, + 0.015992165, + 0.09394011, + 0.36797953, + -0.11074004, + -0.5706007, + 0.43132216, + 0.7577603, + -0.8736129, + -0.6394519, + 0.2828955, + 0.22421268, + 0.17153203, + -0.49276826, + -0.45501667, + -0.3103023, + -0.0037775058, + 0.24779111, + -0.12055814, + -0.035536226, + 0.10743559, + 0.3593567, + -0.14149944, + 0.5957868, + 0.21506207, + -0.182036, + 0.117405266, + 0.060599074, + 0.32793534, + -0.36560515, + -0.0757536, + -0.51676726, + 0.034155004, + 0.051083386, + -0.4733615, + 0.384401, + -0.10030475, + 0.15185434, + 0.21056244, + -0.4168073, + 0.073315755, + 0.190744, + 0.19549467, + 0.16467535, + 0.42962003, + 0.15194604, + -0.15202369, + -0.33229786, + 0.2745797, + -0.13968235, + -0.19117047, + 0.34084815, + 0.33222732, + -0.29961404, + -0.0719326, + 0.36251134, + 0.40206087, + 0.11657206, + -0.030572949, + 0.061129257, + 0.006069269, + 0.34036732, + -0.9214041, + 0.25454548, + -0.12457685, + 0.5961018, + -0.05635869, + -0.11486925, + -0.3395826, + 0.18727002, + -0.2598338, + 0.41451204, + 0.6440658, + -0.007869851, + -0.4668829, + 0.052549448, + 0.35841185, + -0.8165342, + 0.0001411512, + 0.25710332, + -0.027150609, + -0.35925454, + 0.4726051, + 0.07903178, + 0.35724092, + 0.2781954, + 0.45340464, + 0.5560549, + 0.27448368, + -0.32043767, + -0.18250427, + -0.4511716, + -0.12836972, + 0.09164104, + -0.38447925, + -0.090387724, + -0.072897464, + -0.25012484, + 0.27516618, + -0.31986013, + 0.08820717, + 0.12876004, + 0.18937884, + 0.15644345, + -0.15652326, + -0.39527446, + 0.33317572, + 0.87882274, + 0.2248554, + -0.09328258, + -0.041499548, + -0.010910217, + -0.27961558, + 0.037944, + 0.64704084, + 0.357086, + 0.25669414, + 0.6530471, + -0.24570858, + -0.1655674, + -0.14236602, + 0.15361072, + -0.20235595, + -0.50188607, + 0.35677695, + -0.17273377, + -0.06722525, + 0.101337954, + 0.6369814, + 0.072987966, + -0.39359337, + 0.2998125, + -0.14313696, + 0.46378788, + -0.1206851, + -0.23236516, + 0.11158031, + -0.10499212, + -0.40886712, + -0.17864627, + -0.04458949, + 0.27058226, + 0.5329728, + 0.24569568, + 0.6278155, + -0.074599095, + -0.601643, + -0.07527384, + -0.34544134, + 0.0375455, + 0.058798328, + 0.35477605, + -0.07688232, + 0.30710664, + -0.075573556, + 0.24964158, + 0.36102477, + -0.055690672, + -0.16954239, + -0.20481145, + -0.17589259, + -0.072236665, + -0.041005112, + 0.11832172, + -0.037613764, + 0.33557138, + -0.6735503, + 0.28976914, + 0.15663981, + -0.024900129, + -0.2534804, + -0.05183752, + -0.4065746, + -0.3210622, + 0.1629321, + -0.16161339, + -0.41966227, + 0.0040207356, + -0.034227744, + -0.32704943, + 0.13198867, + -0.1669023, + 0.33475432, + -0.15265179, + 0.29567614, + 0.20430979, + 0.4855955, + 0.34293336, + -0.479745, + -0.19132362, + -0.11631518, + -0.75684476, + -0.5387814, + -0.3461076, + -0.30126983 + ], + "2025-05-20T11:42:41.287642", + "2025-05-20T11:42:41.287642", + -130.6657867432, + -5.6428070068, + -29.6639633179, + "0", + "ID: 1720502
Cluster: 0
Chunk: Semesterinformation\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nKW Datum Zeit Wochentag Thema Inhalt Dozent Raum Bemerkungen\n8 20.02.2025 13:30-15:00 Do 1.\n\nDynamische Speicherstrukture..." + ], + [ + 11717, + "Fallbeispiel\n26", + 18240, + 4173286, + null, + "md", + null, + [ + 0.26656806, + 0.5253133, + 0.48931304, + -0.7356992, + -0.74937826, + 0.11828868, + -0.17567016, + 1.0539167, + -0.6556967, + -1.1363449, + 0.59633434, + 0.7216692, + 0.5009073, + 0.22413087, + 0.051205747, + -0.27063003, + -0.6022064, + -0.28698733, + -0.30200198, + -0.37739652, + -0.46618682, + 0.06087881, + -0.32322696, + 0.6103993, + -0.39389443, + -0.36408284, + -0.06465165, + -0.25247136, + 0.29849216, + -0.329827, + 0.15293445, + 0.4391276, + -0.31882104, + -1.1607982, + 0.29291245, + 0.15577278, + 0.48590055, + -0.3544446, + -1.0439099, + 0.31719062, + -0.24835658, + 0.90581405, + -0.41005722, + -0.48515812, + -0.39847326, + -0.50715244, + 0.56266606, + -0.6822293, + -0.26057157, + 0.45712548, + -0.39637214, + 0.1647966, + 0.56844103, + -0.1755153, + 0.014567126, + 0.14899859, + -0.6519034, + 0.055350937, + 0.56038535, + 0.024977146, + -0.2422539, + -0.03229313, + -0.4092406, + -0.4774099, + 0.21014415, + -0.3916191, + 0.5014661, + -0.2616044, + 0.32053307, + -0.0119501315, + 0.0020810738, + -0.20608665, + 1.5120302, + 0.27151453, + -0.56938565, + -0.5938383, + -0.15028925, + 0.5248443, + -0.07836835, + 0.5862071, + 1.9518499, + -0.29352084, + 0.16167137, + 0.6656772, + -0.64406455, + 0.14786011, + 0.29126352, + 0.40705577, + 0.35676283, + -0.70462024, + -0.2845476, + -0.20026281, + 0.16994011, + 0.56802464, + 0.102048956, + 0.06729406, + -0.8646794, + -0.02687789, + 0.9970468, + 0.5349855, + -0.016164992, + 0.12714043, + 0.19145852, + -0.4511863, + -0.13893025, + -0.21061097, + 0.017473783, + 0.50224406, + -0.39983827, + 0.3322587, + 0.8150785, + -0.20400569, + 0.30269042, + -0.050447002, + 0.12337914, + -0.1522372, + -0.08428399, + 0.6042814, + 0.263124, + 0.53562266, + -0.40173313, + -0.760457, + 0.4933507, + -0.5390687, + -0.7922663, + -0.32986876, + 0.5690958, + 0.0022670329, + -0.5344524, + 0.12269394, + 0.062258597, + 0.035294395, + 0.38164723, + 0.031857587, + -0.6859449, + -0.5394271, + 0.61993945, + -0.09601092, + 0.5261599, + -0.8607084, + -0.338204, + 0.34294045, + 0.17505255, + 0.10175794, + 0.2897252, + -0.3890931, + -0.107151136, + -0.59475565, + 0.41035452, + -0.43786067, + 0.36351028, + -0.068275586, + 1.1509488, + -0.49508047, + -0.26332015, + -0.24175367, + -0.49321502, + 0.15217349, + 0.17802197, + -0.16390277, + 0.20737249, + 0.31161678, + -0.59115326, + -1.9579428, + 0.5080412, + 0.35225263, + -0.46993, + -0.1142135, + -0.3094358, + -0.40894303, + 0.17217349, + -0.131535, + 0.66721207, + -0.39847577, + -0.07186281, + 1.1062379, + 0.5459901, + 0.19205517, + -0.05452239, + -0.3005535, + 0.18785034, + -0.019584786, + -0.15299694, + 0.802385, + -0.09650222, + 0.6198228, + 0.33676514, + 0.26600185, + -0.15315658, + 0.23925877, + 0.44982696, + -0.5339282, + -0.2574655, + 0.051052533, + 0.68586266, + 0.44841826, + -0.1668159, + 0.3570672, + 0.055192806, + 0.23274027, + 0.03289677, + -0.6316706, + -0.96117246, + -0.8100191, + -0.021939987, + 0.20976685, + -0.83067364, + -0.06156082, + 0.20507357, + -0.3007136, + 0.019340632, + 0.5069736, + 0.4016804, + -0.15571849, + -0.06319993, + 0.7716033, + 0.6118568, + 0.20583045, + -0.55439335, + -0.2916159, + 0.7449908, + -0.14526516, + -0.58760405, + 0.44352487, + 0.9608145, + -0.35435525, + 0.17291194, + 0.92847687, + -0.09001401, + -0.3205087, + -0.17437813, + -0.67812747, + -0.67034125, + -0.19794634, + -0.19659679, + -0.22707082, + 0.13876869, + -0.16198131, + 0.27141014, + 0.60070467, + -0.83412427, + -0.4884097, + 1.1916966, + 0.5992131, + 0.15530436, + -0.45891368, + 0.28257093, + -0.13938622, + -0.33365512, + -0.2769592, + 0.7178056, + -0.3953045, + -0.4527607, + -0.7756728, + -0.050965626, + 0.69193256, + -0.122562796, + -0.14252001, + -0.07179728, + -0.17818126, + -0.23219071, + 0.3671777, + -0.15175822, + 0.03317584, + 0.021921713, + 0.10991608, + -0.5901838, + 0.50541586, + -0.04740849, + -0.007759366, + -0.62483805, + 0.09735039, + -0.18309906, + -0.059315503, + 0.10978291, + 0.042852264, + -0.46170902, + -0.29204062, + 0.09641246, + 0.028764758, + 0.20062308, + 0.13238396, + -0.042635337, + -0.425279, + 0.3805701, + -0.7323642, + 0.14837202, + 0.41014558, + 0.15567121, + 0.3053812, + 0.061536286, + 0.45275414, + 0.52026993, + -0.27435046, + -0.5718859, + 0.4229256, + -0.07084866, + -0.030026317, + -0.36797613, + 0.1122264, + -0.26307356, + -0.10515985, + 0.26979277, + -0.14706655, + -0.33508027, + -0.34815684, + -0.22645114, + -0.49091917, + -0.38154513, + 0.3639837, + -0.6122211, + -0.3048436, + -0.24391583, + -0.3895307, + -0.36050758, + -0.0962911, + -0.03136313, + -0.45664772, + 0.38104597, + 0.9460543, + 0.14456847, + 0.6778669, + 0.32279837, + -0.4436569, + 0.05272206, + -0.38535833, + -0.34588924, + -0.2904867, + -0.2772234, + -0.87668824, + 0.11407234, + 0.0198417, + 0.8916821, + 0.24330945, + 0.29072648, + 0.15307361, + 0.2062233, + 0.11192992, + 0.45900953, + -0.155014, + 0.06565483, + -0.23378563, + -0.022830501, + 0.38708347, + -0.26873228, + -0.25730258, + 0.11316378, + -0.4604946, + -0.2215575, + 0.13694397, + 0.08197186, + 0.36586845, + -0.028996773, + 0.18051717, + 0.17586699, + -0.41382223, + 0.2508657, + -0.30702642, + -0.4648323, + -0.19495253, + 0.123159885, + -0.14772266, + -0.29556483, + -0.041871198, + 0.1378702, + 0.09837083, + 0.06253725, + 0.7177657, + -0.48658413, + -0.23369767, + 0.2354919, + -0.026035756, + 0.3622049, + 0.48521173, + 0.35048184, + -0.52645826, + -0.4439323, + 0.3806598, + 0.15666665, + -0.11622001, + 0.29278165, + 0.37806502, + 0.035442308, + 0.19264522, + 0.43181688, + 0.14496572, + 0.76961523, + 0.090536185, + -0.101270154, + -0.40184098, + -0.16885807, + 0.33664152, + 0.08898454, + 0.038801543, + -0.59514266, + -0.6362529, + 0.49646634, + 0.32957858, + -0.2718823, + 0.37542862, + 0.011395182, + -0.2974469, + 0.014852148, + 0.05607478, + 0.10929003, + -0.11432752, + -0.876907, + 0.1592305, + 0.69625735, + 0.043638654, + -0.17394237, + 0.059968024, + 0.32240793, + -0.047884714, + -0.20440532, + 0.12123285, + 0.64207363, + -0.06869782, + 0.72979045, + 0.29619628, + 0.15942426, + 0.5040492, + 0.581812, + 0.07661596, + -0.016697299, + -0.13293299, + -0.5640195, + 0.26753142, + -0.39310464, + 0.6581654, + 0.095744535, + -0.10117728, + 0.29387343, + 0.26654446, + 0.110354185, + -0.23955593, + -0.15913647, + -0.4193846, + -0.08628654, + 0.8529431, + -0.43195474, + 0.08387873, + -0.208806, + -0.041998703, + 0.18912126, + -0.432355, + 0.18521535, + 0.70500445, + 0.340972, + 0.16211247, + 0.48353451, + -0.087219365, + 0.24761929, + -0.60789067, + -0.038408555, + -0.21116513, + -0.32791704, + -0.026726462, + 0.17587714, + 0.28274095, + 0.2850052, + 0.43851233, + 0.32130143, + -0.30484486, + -0.055469, + -0.27294496, + 0.13276143, + -0.021105938, + -0.19310531, + 0.3066401, + -0.15792915, + 0.48119622, + -0.36528304, + 0.6264926, + -0.1438396, + -0.16154468, + 0.015671533, + -0.19105929, + -0.4125015, + 0.24613036, + -0.39126223, + 0.72922206, + 0.38456106, + 0.62204397, + -0.20637366, + -0.38563398, + -0.10032717, + -0.14298457, + 0.32253802, + 0.20113276, + 0.7401749, + -0.5676083, + 0.2110326, + 0.18967815, + -0.15491089, + -0.6085462, + 0.17248648, + -0.21303543, + 0.073526904, + 0.64009035, + -0.25802758, + 0.25763223, + 0.23493016, + -0.15475631, + 0.037105337, + 0.108165085, + 0.49268818, + -0.5189825, + 0.07913368, + -0.4079382, + -0.23391135, + 0.037048854, + -0.20974134, + 0.47924066, + 0.094929665, + -0.23066437, + -0.35099483, + -0.53016454, + -0.412993, + 0.09029362, + 0.62401044, + -0.22009638, + -0.5276195, + 0.18111923, + -0.3743839, + -0.07593414, + -0.08641575, + 0.055489447, + -0.22558668, + 0.40833318, + -0.34415168, + -0.069987774, + 0.035186708, + -0.4325619, + -0.25760287, + -0.55115765, + -0.045084666, + -0.07199043, + -0.097315975, + -0.2804834, + -0.05913653, + 0.07555573, + -0.17714939, + 0.06892068, + 0.1066713, + -0.22870386, + 0.23601429, + 0.051809587, + 0.06374412, + 0.26616177, + -0.39634538, + -0.094775155, + -0.017267257, + -0.40489888, + -0.0007169396, + 0.1551452, + 0.06273943, + -0.10574545, + -0.0603436, + -0.09682876, + 0.1814125, + 0.33648837, + 0.15987818, + -0.31163657, + -0.36416763, + -0.63220096, + -0.79556865, + -0.2973321, + -0.123603426, + 0.6712883, + -0.5098917, + -0.25634712, + 0.37733248, + -0.15558279, + 0.11248955, + 0.021146823, + -0.103081696, + 0.6409461, + 0.16087292, + -0.37029922, + -0.40938216, + -0.0019384865, + -0.15710075, + 0.48344004, + 0.3273008, + -0.3451752, + -0.39136612, + -0.32477927, + -0.44262397, + 0.26897448, + 0.06427331, + -0.1460348, + 0.39051893, + -0.18446368, + 0.1659826, + -0.20127128, + -0.15676631, + 0.01807353, + -0.47902608, + 0.20159993, + 0.43535152, + 0.040248275, + 0.667825, + 0.26098603, + 0.12348478, + 0.015419008, + -0.09814551, + -0.09458242, + -0.059831534, + -0.031137764, + -0.072932646, + 0.14662859, + -0.22312818, + -0.4620953, + 0.2641797, + 0.39962587, + -0.17054492, + -0.20925215, + -0.13143113, + 0.044346415, + 0.60195786, + 0.0859361, + 0.13751808, + 0.35820714, + -0.33576325, + -0.30866498, + 0.27948305, + -0.0879558, + 0.19033894, + 0.045771107, + 0.29310498, + -0.027852304, + -0.1387852, + 0.44800496, + 0.09448314, + 0.19863531, + -0.3857126, + -0.12853393, + -0.030014964, + 0.61765695, + 0.42165846, + -0.62757117, + -0.37945288, + 0.6332541, + -0.464457, + -0.5361437, + 0.83499134, + 0.19881387, + -0.67729807, + -0.42446598, + -0.58397615, + -0.63222253, + -0.101353936, + -0.4741449, + -0.036133796, + 0.043779474, + 0.21366848, + -0.11196974, + -0.13459426, + -0.2021784, + 0.35046178, + -0.66610587, + 0.24167335, + 0.5297449, + -0.032162804, + -0.36616313, + -0.048948735, + -0.14576703, + 0.021878198, + 0.32275957, + 0.3759007, + 0.085267544, + 0.3435522, + 0.0226029, + 0.50576204, + -0.5416529, + 0.3329186, + -0.04709679, + 0.14495775, + 0.35686415, + -0.07772631, + -0.47206488, + 0.115788914, + -0.18432747, + -0.37547487, + -0.4514291, + -0.1813632, + -0.3239724, + -0.1417988, + 0.013881765, + 0.049018946, + -0.19953737, + -0.17679965, + -0.012268078, + 0.02886875, + 0.13546494, + -0.39463645, + -0.39966086, + 0.11478209, + 0.42962077, + -0.37181956, + -0.8302474, + -0.10372332, + 0.06350693, + -0.30584562, + 0.23068543, + 0.37382856, + -0.3456079, + -0.32688951, + -0.08858538, + 0.4070978, + 0.46008956, + 0.6758132, + 0.24465998, + -0.40935487, + 0.22364432, + -0.7686984, + 0.0008602478, + -0.14089099, + -0.4738329, + 0.8239867, + 0.108914554, + 0.06373408, + 0.2087746, + -0.46599206, + -0.26990235, + -0.12681249, + -0.3558678, + 0.24894361, + 0.075637706, + 0.31908542, + 0.10796381, + -0.06272471, + -0.21588288, + -0.010266364, + -0.25708652, + -0.22406733, + 0.2904529, + 0.018928722, + 0.14384589, + 0.42431313, + 0.506095, + 0.40140998, + 0.008040674, + -0.6993208, + -0.5624181, + -0.19976181, + -0.031089053, + -0.4744235, + 0.47310293, + -0.046421744, + 0.19140154, + -0.17241013, + 0.5352506, + -0.14448403, + 0.3940098, + -0.06916042, + 0.4996309, + -0.3126294, + 0.16966173, + 0.43984804, + -0.18812901, + -0.08509977, + -0.112525955, + -0.40217116, + -0.42965603, + -0.11719439, + -0.13274771, + 0.6052349, + -0.7040949, + 0.18117198, + 0.008695886, + -0.6484499, + 0.07742027, + 0.010862865, + 0.0063298345, + 0.040362574, + 0.37499115, + -0.3138166, + 0.17703916, + -0.34696263, + -0.015527494, + -0.09432372, + 0.22715187, + 0.21799369, + -0.35087454, + 0.3345401, + -0.15899345, + -0.52826846, + 0.46416888, + 0.36001977, + -0.56908166, + 0.17644536, + -0.07616757, + -0.29044563, + 0.5238607, + 0.31771886, + -0.07184307, + -0.24200456, + -0.16190931, + 0.008243799, + 0.023209296, + 0.06534143, + -0.41226047, + 0.112298295, + -0.3015791, + -0.5647689, + -0.04952158, + -0.00445503, + 0.16611058, + -0.23187056, + -0.44529772, + 0.29885244, + 0.31303346, + -0.13814785, + -0.1932252, + -0.012695096, + -0.15963979, + -0.12772162, + -0.047912568, + -0.28576612, + 0.4680935, + 0.3402425, + -0.108937636, + 0.8961656, + -0.3041432, + -0.12323314, + -0.016468868, + -0.19155559, + 0.09138339, + -0.05337052, + 0.1106626, + -0.016372368, + -0.36485037, + 0.17217425, + -0.29221687, + 0.39180073, + -0.21099079, + -0.0023429021, + 0.21915114, + 0.6374825, + -0.3332619, + 0.053048454, + -0.3141463, + -0.3617488, + 0.071757555, + -0.07790172, + 0.3100374, + -0.31573573, + -0.58393866, + 0.51212573, + 0.3571202, + 0.06581415, + 0.32387367, + -0.101696275, + 0.7823158, + -0.09569957, + 0.6328414, + 0.16383699, + 0.24601734, + -0.5235795, + 0.3037342, + 0.08023377, + -0.298779, + 0.17945886, + 0.1675681, + 0.076659165, + -0.020239571, + -0.6810321, + -0.06979373, + 0.14966048, + 0.7473624, + -0.4045639, + 0.25004083, + -0.06125778, + -0.17939858, + -0.06522793, + 0.23669598, + -0.18314189, + -0.03256868, + -0.069894694, + 0.16219781, + -0.29723406, + 0.44915992, + 0.47120082, + 0.35745588, + 0.36508352, + -0.6298312, + -0.0038676448, + -0.000684265, + 0.0768022, + -0.13687824, + 0.65207183, + 0.18375845, + 0.14368202, + -0.061746687, + -0.09830982, + 0.06257132, + 0.6280069, + -0.34335703, + 0.37760842, + 0.3159033, + 0.13959254, + 0.39266062, + -0.08280173, + -0.14325562, + 0.20307642, + 0.25995505, + 0.26635066, + -0.1264677, + -0.08744081, + 0.23189142, + -0.06639249, + -0.012150578, + 0.15435706, + 0.39075422, + -0.38875258, + 0.13185693, + 0.12422066, + 0.095832065, + 0.033905335, + -0.07125055, + -0.12763172, + 0.14759089, + -0.24925143, + 0.42952144, + 0.44857544, + -0.44048527, + -0.27902123, + 0.27675, + 0.4195206, + 0.5265678, + 0.29162216, + 0.29116675, + -0.71511525, + -0.21162498, + 0.696861, + -0.15296543, + 0.110065766, + -0.002412146, + -0.09934472, + 0.09578111, + 0.2346858, + 0.9101971, + 0.48778546, + -0.71838707, + 0.08633807, + 0.10951728, + 0.35759056, + -0.3917056, + 0.29888383, + 0.24649747, + -0.27665076, + -0.2941874, + -0.10381008, + 0.006866522, + 0.37984443, + -0.20687683, + -0.17171974, + -0.3413689, + 0.062334947, + 0.23428057, + 0.22714692, + -0.11409806, + 0.010326289, + 0.27350253, + 0.70198333, + -0.34454703, + -0.21612805, + 0.46419516, + 0.09470786, + 0.32727247, + -0.100289404, + 0.40277886, + 0.14520058, + -0.22886594, + -0.4284003, + -0.030329103, + -0.21271726, + 0.91875297, + -0.22989021, + -0.26487443, + -0.083734445, + 0.17760232, + -0.17166932, + -0.398322, + -0.048962414, + 0.65776414, + 0.1027699, + 0.18211134, + 0.17629838, + -0.6043768, + 0.6302831, + -0.24834588, + -0.36605713, + -0.78877664, + 0.5127979, + 0.33305693, + -0.37917215, + 0.048247147, + 0.2061078, + -0.32533747, + 0.4034822, + -0.16670462, + -0.10830925, + 0.12508468, + -0.36289477, + 0.44944593, + -0.2842212, + -0.36477113, + -0.0005038884, + -0.008594878, + 0.43406487, + 0.019698672, + 0.3151072, + 0.20353642, + 0.37260592, + -0.18694735, + -0.39751375, + -0.33342054, + -0.043205958, + 0.31236318, + 0.32274875, + 0.20942324 + ], + "2025-05-20T11:42:41.339614", + "2025-05-20T11:42:41.339614", + 80.9870300293, + -88.608291626, + -25.0651397705, + "2", + "ID: 4173286
Cluster: 2
Chunk: Fallbeispiel\n26" + ], + [ + 11718, + "A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner Martin\nVorname, Nachname: ________________________________________________________\nBearbeitungszeit ::: 90 Minuten\nErlaubte Hilfsmittel ::: Eigener Taschenrechner\nDisclaimer :::\nL\u00f6sungsweg muss klar ersichtlich sein, unbelegte Resultate k\u00f6nnen nicht ber\u00fccksichtigt werden.\n\no\nKeine Kommunikation unter den Studierenden oder mit Dritten.\n\no\nW\u00e4hrend der Pr\u00fcfung sind Smartphones und Smartwatches auszuschalten.\n\no\nWiederholungsrecht f\u00fcr die Pr\u00fcfung ist bei Betrug verwirkt.\n\no\nL\u00f6sungen m\u00fcssen schriftlich abgegeben werden.\n\no\nHinweise f\u00fcr die Studierenden :::\nPr\u00fcfungsbl\u00e4tter nur einseitig beschriften.\n\no\nLesen Sie zuerst alle Aufgaben sorgf\u00e4ltig durch, bevor Sie zu l\u00f6sen beginnen.\n\nBearbeiten Sie alle\no\nFragestellungen.\n\nDie Aufgaben sind nicht nach Schwierigkeitsgrad geordnet.\n\no\nFachhochschule Graub\u00fcndenAUFGABE 1: (10 Punkte)\n(a) Eine verkettete Liste mit 4 Elementen A[1\u20264] sei mit den jeweiligen Zeigern im Speicher wie folgt abgelegt\nmit A[1] \uf0e0 2001.\n\nErg\u00e4nzen Sie die fehlenden Eintr\u00e4ge so wie in der Vorlesung und den \u00dcbungen. (\n\n4P)\n(b) Zeichnen Sie den Graphen mit der Adjazenzliste: (2P)\nFachhochschule Graub\u00fcnden(c ) Ein bin\u00e4rer Baum ist mit Zeigern im Speicher abgelegt.\n\nTragen Sie die fehlenden Zeiger in die Tabelle ein (wie in\nder Vorlesung und den \u00dcbungen): (4P)\nFachhochschule Graub\u00fcndenAUFGABE 2: (8 Punkte)\n(a) Wir suchen das Feld in der Skipliste mit dem Wert 2.\n\nWelche Werte der Skipliste werden gepr\u00fcft? (\n\n2P)\n(b) Zeichnen Sie einen bin\u00e4ren Suchbaum der Tiefe 3. (\n\n2P)\nFachhochschule Graub\u00fcnden(c) F\u00fcgen Sie nacheinander die folgenden Elemente in einen bin\u00e4ren Suchbaum ein:\nMarlen, Adrian, Peter, Urs, Mike, Bernd, Carl, Karsten, Sabine, Susanne, Christine, Kirsten, Alexander. (\n\n4P)\nFachhochschule Graub\u00fcndenAUFGABE 3: (8 Punkte)\n(a) F\u00fcgen Sie in dem bin\u00e4ren Suchbaum das Element mit dem Schl\u00fcssel-Wert 11 ein.\n\nWie sieht der\nSuchbaum danach aus? (\n\n2P)\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\nWie sieht danach der Suchbaum aus? (", + 18240, + 5441561, + null, + "md", + null, + [ + -0.30515555, + -0.14859733, + -0.2907506, + -0.9129415, + 0.1334666, + 0.35424015, + 0.19413741, + 0.061239563, + -0.12346785, + -0.28735802, + 0.3367314, + 0.25140816, + 0.17027909, + -0.14460994, + 0.23843019, + -0.13566323, + 0.37057465, + -0.16810408, + -0.22692493, + -0.04520729, + -0.30817518, + 0.82013404, + -0.27978626, + -0.55596495, + 0.450278, + 0.2624361, + -0.5647471, + -0.21176696, + 0.0015793238, + 0.6738452, + -0.36007595, + -0.6481569, + -0.16622557, + -0.05394174, + 0.17143127, + -0.2848207, + 0.45293003, + 0.20632371, + 0.2551156, + 0.2597976, + -0.06598796, + 0.27511194, + -0.39344078, + -0.7374856, + -0.09233965, + 0.23792689, + 0.09954536, + 1.2445338, + 0.024646893, + 0.22494763, + 0.048621483, + 0.4329353, + -0.4409988, + -0.08099344, + -0.37433723, + -0.13059193, + -0.16031404, + -0.2840599, + -0.7470587, + -0.05618491, + 0.03266052, + -0.15373008, + 1.1586397, + -0.19353671, + -0.23090734, + -0.10786878, + 0.03016441, + -0.19961849, + 0.9300144, + -0.37786642, + 0.74176204, + -0.01666043, + -0.6710729, + -0.28802338, + 0.056510285, + -0.16190915, + 0.2120038, + -0.017909005, + -0.7946408, + 1.0274469, + -0.2990196, + 0.5437434, + 0.47989866, + 0.086471684, + -0.36924022, + -0.26142856, + -0.053407654, + 0.5034002, + -0.085252374, + 0.44102576, + -0.048045043, + -0.08855205, + -0.4612468, + 0.6919998, + -0.48854536, + -0.15525071, + -0.19412427, + -0.29970333, + 0.6284504, + 0.14907825, + -0.7797276, + 0.9818813, + 0.6869283, + 0.06316834, + -0.41114044, + -0.16765456, + 0.062882006, + 0.23331957, + -0.34290302, + -0.39330554, + -0.36645693, + 0.2778853, + -0.14589651, + 0.7341792, + -0.43014118, + 0.09676452, + -0.7998611, + 0.8426324, + 0.16843122, + -0.6222976, + 0.27563375, + -0.39530858, + 0.327616, + -0.28386012, + 0.46443373, + -0.25841266, + 0.8985802, + 0.24036434, + -0.1371811, + -0.173087, + 0.042655084, + 0.53516394, + 0.14924099, + -0.18016131, + -0.049184646, + -0.4044009, + -0.42211488, + -0.4375518, + -0.06414524, + -0.25074887, + 0.23781544, + -1.0173606, + -0.06774359, + -0.7243294, + 0.71213824, + 0.14270625, + 0.3649372, + -0.23115358, + -0.436748, + 0.31907964, + 0.67910147, + 0.5286133, + 0.65115845, + -0.051956587, + 0.5821675, + 0.4482054, + -0.4505784, + -0.019533586, + -0.017179854, + -0.031237707, + -0.01932006, + 0.27662265, + -0.55173653, + -0.8267486, + -0.44777498, + 0.05661215, + -0.41320193, + 0.08677849, + -0.15704724, + -0.49167413, + -0.10330658, + -0.6850906, + 0.22465493, + -0.107214436, + -0.88666993, + 0.3273317, + 0.010182396, + 1.2605767, + -0.65244806, + 0.41014603, + 0.035778027, + 0.51228243, + -0.82852745, + 0.44214615, + -0.16086142, + -0.13236143, + 0.6592305, + 0.11018216, + 0.097205535, + -0.09968153, + 0.51393217, + -0.30260217, + 0.16281864, + 0.046413798, + 0.5165966, + -0.03630536, + -0.14047581, + -0.5465833, + 0.1618812, + -0.46164995, + 0.25813964, + -0.385388, + -0.64817506, + -1.0548141, + -0.05287013, + -0.29432148, + 0.2500341, + 0.18900497, + 0.9383664, + -0.20885831, + 0.31603724, + 0.23351529, + -0.27929574, + 0.39391497, + 0.35117394, + -0.26059914, + 0.58039486, + -0.109280236, + -0.9323228, + 0.16530116, + 0.07734762, + -0.61003643, + -0.036286164, + -0.18970047, + 0.41734785, + -0.008525293, + -0.14288521, + -0.49945635, + 0.9454537, + 0.10047979, + 0.4719326, + 0.34077406, + -0.312416, + -0.096835665, + -0.3463452, + 0.0055888155, + -0.49824238, + 0.46546438, + -0.040646266, + 0.041466553, + -0.66947925, + -0.22239675, + 0.40822726, + 0.13631563, + 0.18755145, + -0.2790493, + -0.5025383, + 0.57094187, + 0.0041786805, + 0.08375247, + 0.362982, + -0.13841888, + -0.21661617, + -0.12944639, + -0.07455134, + 0.4329432, + 0.6960533, + 0.11317302, + -0.47606328, + -0.34480238, + -0.11743902, + 0.06561324, + -0.24902883, + -0.263526, + -0.16591564, + 0.10634727, + -0.36515898, + 0.59453, + 0.26682156, + -0.44071135, + -0.33577332, + -0.54799795, + -0.81322294, + 0.31515417, + 0.3367385, + -1.0220196, + -0.18496904, + 0.32803234, + 0.07072943, + -0.11288872, + -0.08773932, + -0.08173081, + -0.0041821897, + -0.5499432, + 0.057852607, + -0.16397308, + -0.3392973, + -0.047899965, + -0.1831305, + -0.36757338, + 0.5082931, + 1.0092833, + -0.069505915, + -0.5373528, + -0.08853425, + 0.06312153, + 0.14365284, + 0.0018650293, + -0.32686663, + 0.5759413, + -0.0232716, + 0.52276087, + -0.15583178, + 0.021918599, + -0.032124113, + -0.33574587, + 0.7108636, + -0.14888681, + -0.27793297, + -0.025597699, + 0.13535154, + -0.42310512, + 0.92717415, + -0.15764259, + 0.015786305, + -0.19864425, + -0.33900538, + -0.01910176, + 1.2565368, + 0.09994322, + 0.17841277, + 0.25369722, + -0.38435364, + -0.4331228, + 0.096422784, + -0.63850373, + 0.040119693, + 0.2985774, + -0.7379221, + 0.8233832, + -0.5172792, + 0.09460115, + -0.082642764, + -0.34699833, + 0.5488008, + -0.7037103, + -0.06985402, + 0.16636534, + 0.07100085, + 0.25124714, + 0.55461556, + -0.6025093, + 0.1544475, + 1.4296623, + 0.38280192, + 0.56109416, + -0.1569759, + -1.0526493, + -0.1956172, + -0.065698095, + -0.2053572, + 0.3562391, + 0.10989542, + -0.8900804, + 0.34709498, + 0.27340043, + 0.4415491, + 0.08358292, + 0.25424692, + -0.13379778, + -0.35426974, + -0.30256286, + 0.032668114, + 0.5082203, + 0.02812887, + -0.3071652, + 0.063991785, + 0.17218249, + -0.47402617, + -0.057911016, + -0.5032744, + -0.19577391, + 0.25594643, + 0.78161234, + -0.57277024, + 0.4957783, + -0.62124777, + -0.056555763, + -0.45000297, + -0.041015446, + -0.63336474, + -0.58979213, + -0.13169385, + 0.5046419, + -0.08906469, + 0.1292684, + 2.1553268, + 0.23702106, + -0.26012436, + 0.5266542, + -0.92762697, + 0.081121325, + 0.3112158, + 0.49196786, + -0.21114066, + 0.1712138, + 0.6059452, + 0.5689461, + 0.21232854, + 0.40005803, + -0.21869272, + 0.3044842, + 0.6036727, + 0.15486586, + -0.031072348, + -0.027419945, + -0.3103751, + 0.11346748, + 0.21840164, + 0.38779572, + 0.19044499, + 0.78140193, + 0.4721806, + -0.3588211, + 0.4446696, + 0.22362576, + 0.17724463, + 0.27984062, + 0.2655363, + -0.30295593, + 0.503076, + 0.9708333, + -0.5498646, + -0.06719675, + -0.047975294, + 0.09692265, + -0.19791022, + -1.664608, + -0.051339425, + -0.395117, + 0.4672518, + 0.6007831, + 0.048470482, + -0.06670498, + 0.32272848, + -0.5478183, + -0.45952094, + 0.1785539, + -0.435481, + -0.11700179, + 0.2542149, + 0.28302372, + -0.21971281, + -0.56057495, + -0.067988865, + 0.07209492, + -0.43796754, + 0.69364095, + -0.03419109, + -0.32897967, + 0.24406835, + 1.4633555, + 0.13702899, + -0.40490162, + -0.18128628, + -0.2714742, + -0.261569, + 0.2188533, + -0.112986594, + -0.10458878, + 0.30360997, + 0.75920385, + 0.9779809, + 0.046856314, + 0.12117962, + 0.33058378, + -0.06816444, + -0.18087262, + 0.22588527, + -0.28575802, + 0.09854579, + 0.11998903, + -0.3189659, + -0.40638635, + 0.5108794, + -0.4048246, + -0.038192097, + 0.023255859, + 0.07157618, + 0.020302482, + -0.37528142, + 0.38772783, + -0.22072491, + 0.120173365, + -0.22445327, + -0.6060664, + -0.037919827, + -0.5414063, + 0.14185154, + 0.5692578, + 0.07673928, + 0.030849218, + -0.037728503, + 0.25018346, + 0.26364225, + -0.7442907, + 0.80370903, + 0.19561073, + -1.1233368, + 0.42366606, + 0.00436417, + -0.2125794, + 0.28397232, + -0.50090516, + 0.018174589, + -0.24060324, + -0.33919415, + 0.5744813, + -0.35763526, + 0.27832687, + 0.09550676, + -0.39867443, + 0.18787715, + 0.38680753, + -0.39256176, + 0.47368515, + 0.2651555, + 0.50024325, + 0.47845644, + -0.57202333, + 0.01502268, + -0.27855864, + -0.3904301, + 0.20800115, + -0.05547456, + -0.35504693, + 0.47465664, + 0.051423047, + 0.22423112, + -0.51701504, + -0.54719806, + -0.80372745, + 0.30420026, + 0.47508997, + -0.13135009, + 0.27519798, + -0.30103204, + -0.29405135, + 0.033511516, + 0.30766115, + -0.25215417, + 0.77452886, + -0.44458574, + 0.44902748, + -0.93894863, + -0.13324946, + 0.09367509, + -0.26967332, + -0.4578543, + 0.44675896, + -0.5685128, + 0.8342213, + -0.51742995, + -0.2668445, + 0.10530737, + 0.29412097, + -0.18913192, + -0.06956157, + 0.18227157, + -0.30085665, + 0.10278027, + -0.19309902, + 0.1366126, + -0.39647478, + -0.18081383, + -0.65096205, + -0.41518062, + -0.62682647, + -0.4953742, + 0.33683395, + -0.47781068, + -0.09274109, + 0.2796102, + -0.07197381, + 0.24611248, + 0.36837003, + 0.7446424, + -0.31939965, + -0.11256243, + 0.10923369, + -1.0412554, + 0.11077647, + 0.21309392, + -0.0085755065, + 0.1267107, + 0.17260385, + 0.12483156, + -0.012027834, + 0.26472706, + 0.051404744, + 0.3625214, + 0.012938342, + -0.47123852, + 1.0303146, + 0.02618438, + 0.6103415, + -0.2843116, + -0.32966346, + -0.46627378, + 0.02437026, + 0.037758417, + 0.34482664, + -0.36490628, + -0.8226116, + -0.0724474, + -0.4866066, + 0.11817148, + 0.051363036, + -0.16919295, + 0.03030324, + -0.568912, + -0.01975871, + -0.21577048, + -0.1331334, + 0.2165487, + 0.3403986, + -0.09312197, + 0.076334424, + 0.10681524, + -0.46769077, + -0.25540632, + 0.15901384, + -0.16125324, + 0.28578055, + 0.62163144, + 0.18960841, + 0.8107261, + -0.5143774, + 0.81812763, + 0.7650651, + 0.42127204, + 0.6575445, + 0.47998342, + 0.2743843, + 0.43253538, + 0.6544301, + 0.12695383, + -0.45832294, + -0.06709314, + 0.6167051, + -0.36743504, + -0.68379736, + 0.09057343, + 0.6899544, + -0.21988228, + -0.3557532, + 0.55238897, + 0.17044346, + -0.2554361, + 0.19934371, + 0.05479428, + -0.2739699, + -0.65206546, + -0.27680278, + 0.040897496, + -0.09710335, + -0.21113653, + 0.31413305, + 0.09613145, + -0.44100994, + -0.0982642, + -0.7267852, + 0.02138652, + 0.45496988, + 0.4696022, + -0.45626327, + 0.5311036, + 0.19610634, + -0.1790887, + 0.6289532, + -0.66666067, + 0.098029405, + 0.25798798, + 0.18566276, + 0.18067898, + 0.48063278, + -0.29033637, + 0.42005774, + -0.23575892, + -0.14300624, + 0.28512597, + -0.17169578, + -0.22664559, + -0.096466675, + 0.08293639, + 0.114223026, + 0.040937997, + -0.13944839, + 0.028058827, + 0.18075873, + 0.38029775, + -0.06534709, + -0.19674239, + -0.49668238, + 0.0021864846, + 0.15187876, + -0.2532757, + -0.07121429, + -0.19239923, + 0.4615894, + -0.73012424, + -0.21275237, + -1.8788924, + 0.13694426, + -0.13457885, + 0.19289565, + 0.50626856, + -0.8688476, + -0.16576374, + 0.10830864, + 0.68418396, + -0.13803656, + -0.16290934, + -0.048436668, + 0.19109847, + 0.20475352, + -0.6698638, + 0.043499008, + 0.20145816, + -0.4793836, + -0.016052734, + -0.08992885, + -0.33487275, + -0.7077406, + -0.29077178, + 0.049007088, + -0.07620807, + 0.066431485, + 0.048599184, + 0.017111782, + 0.0066378564, + 0.51924515, + -0.32098293, + -0.16257234, + -0.23909533, + -0.13302764, + 0.93945223, + 0.20202827, + 0.59287477, + 0.55180526, + -0.047503226, + 0.3906824, + -0.40674317, + -0.41356272, + -0.070334405, + -0.37313867, + -0.060034264, + 0.29684395, + -0.0134943435, + 0.014348581, + 0.1759775, + 0.1857416, + -0.13593936, + 0.8016995, + -0.6079686, + 0.282869, + 0.4070179, + 0.06317889, + 0.44061947, + 0.12674621, + -0.67702305, + -0.38011664, + 0.19209237, + -0.66350895, + -0.018571535, + -0.969312, + -0.0936658, + -0.5442368, + 0.41938856, + -0.2256737, + -0.14592291, + 0.14769721, + -0.12424295, + -0.016226757, + -0.02576118, + 0.8757368, + 0.4232831, + -0.6099684, + -0.103083536, + 0.123489946, + 0.2627551, + 0.24460365, + 0.010998733, + 0.5341248, + -0.5947963, + 0.1303033, + 0.012045994, + -0.10746814, + 0.11897041, + 0.44514278, + 0.28130507, + -0.32058364, + -0.35568324, + 0.13455322, + -0.3535945, + 0.40487087, + 0.08551611, + 0.4098884, + -0.060237605, + -0.69820213, + -0.48031527, + 0.0376921, + -0.660782, + -0.4235474, + 0.01945296, + -0.3610309, + -0.076196775, + 0.47501814, + 0.3063506, + -1.1699272, + 0.19746575, + 0.018123813, + 0.03325878, + -0.11707055, + -0.39922118, + 0.16296631, + -0.21583724, + 0.16677319, + -0.43725622, + 0.25584084, + 0.38572446, + -0.056735516, + -0.10477203, + 0.22752695, + -0.06975598, + 0.5049642, + 0.7961814, + 0.5127146, + 0.018459179, + -0.31533337, + 0.3865741, + -0.70081115, + -0.12138138, + 0.1377339, + 0.1365265, + 0.119443975, + 0.44541004, + 0.41672847, + -0.3705336, + 0.3039223, + -0.20031579, + 0.2222531, + -0.25085396, + -0.17673162, + 0.49711108, + 0.36748782, + 0.5205139, + -0.3771765, + 0.22138497, + -0.1128993, + 0.5939029, + -0.077726915, + -0.33103096, + -0.4247012, + -0.521761, + -0.13164029, + -0.34121335, + -0.4830091, + 0.11629037, + -0.017107125, + 0.12440865, + -0.568151, + -0.13417628, + -0.61406404, + -0.4599327, + -0.47817522, + -0.3716455, + -0.49276406, + 0.3967509, + -0.21309586, + -0.0001974851, + -0.609071, + 1.172331, + -0.97265756, + -0.5552374, + -0.5196522, + 0.15514098, + 0.14102757, + 0.19890344, + -0.10629617, + 0.18239617, + -0.05537613, + 0.1844385, + 0.29076904, + -0.14133336, + -0.5148703, + -0.626047, + -0.5758826, + 0.34436134, + 0.1258479, + 0.2628954, + -0.28017876, + 0.042504143, + 0.31540406, + -0.12604287, + -0.014457114, + -0.4388585, + -0.14278457, + 0.19271013, + -0.62230456, + 0.2818122, + 0.035942875, + -0.31973797, + -0.9011406, + 0.5107101, + 0.57160425, + 0.13415103, + 0.2306971, + -0.124909416, + 0.15016478, + -0.19610998, + 0.5283348, + -0.13264793, + -0.78082734, + 0.33378494, + 0.12520061, + 0.8308328, + -0.19103163, + -0.14072247, + 0.05196784, + 0.07961905, + 0.5534813, + -0.14322229, + -0.5950957, + -0.1267252, + 0.3737189, + 0.4108296, + -0.3880235, + 0.51617235, + -0.30123287, + 0.5536268, + 0.5271828, + -0.010657262, + 0.6911642, + 0.19422467, + -0.017281413, + 0.37934303, + -0.100561745, + -0.8233313, + 0.34915647, + 0.4901526, + -0.4109829, + 0.5529898, + 0.4889676, + -0.1472669, + -0.16998374, + 0.16276987, + -0.30843985, + -0.1143288, + -0.5181367, + 1.1649908, + 0.68992865, + -0.7083719, + -0.10262042, + -0.31914032, + 0.43713453, + -0.12107596, + -0.53911775, + -0.049951047, + 0.8191159, + -0.26705822, + -0.48776352, + 0.51252335, + -0.5490968, + -0.16523175, + -0.23624249, + -0.011048265, + 0.19475807, + -0.8368096, + 0.5561679, + 0.17112166, + -0.20051135, + 0.33573347, + 0.0073874146, + -0.11300807, + 0.22448577, + -0.03947734, + -0.102940656, + 0.4418231, + -0.6030626, + 0.07880368, + 0.8267931, + -0.84075856, + 0.09035016, + -0.55735904, + -0.2289741, + -0.05208374, + 0.6016315, + 0.46777946, + 0.06573491, + -0.24746338, + 0.5695858, + 0.31712368, + -0.2541853, + 0.22891352, + 0.059899885, + -0.100197986, + 0.15260759, + 0.2790533, + -0.39130867, + -0.5167227, + -0.22645025, + 0.37713656, + 0.3884998, + -0.064931415, + -0.0489881, + -0.0912404, + 0.07069782, + -0.18667099, + -0.21917915, + 0.19175644, + 0.06901742, + 0.3407635, + -0.003134653, + 1.2749856, + -0.050991546, + 0.3513377, + -0.2521053, + 0.6453947, + -0.3655633, + -0.41025954, + 0.4061091, + 0.40235943, + 0.5396743 + ], + "2025-05-20T11:42:51.43435", + "2025-05-20T11:42:51.43435", + 89.4516601562, + 7.6296286583, + 70.2842178345, + "2", + "ID: 5441561
Cluster: 2
Chunk: A1 A2 A3 A4 A5 A6 Sum Note\n10 8 8 6 10 6 48\nStudiengang ::: Bachelor of Science FHGR in Computational and Data Science\nModul ::: Effiziente Algorithmen im FS 2025\nDozent ::: Prof.\n\nDr.\n\nMartin B\u00fcnner ..." + ], + [ + 11719, + ")\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n\n\n2P)\n(d) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 7.\n\n\n\nWie sieht danach der Suchbaum aus? (\n\n2P)\nFachhochschule Graub\u00fcndenAUFGABE 4: (6 Punkte)\nF\u00fchren Sie Shellsort mit den Schrittweiten 7, 3, 1 aus: (6P)\n1 2 3 4 5 6 7 8 9 10 11 12 13 14\n15 30 17 10 11 4 6 9 2 1 7 32 5 3\nDokumentieren Sie die Schritte so wie in der Vorlesung und den \u00dcbungen.\n\nFachhochschule Graub\u00fcndenAUFGABE 5: (10 Punkte)\n(a) Ordnen Sie die Folge in einem Max-Heap und speichern diesen in einem Feld A=[\u2026.]\n\nab.\n\nDokumentieren Sie\ndie Zwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n4P)\n9\n4 5\n7 10 6 8\n(b) Nehmen Sie das Ergebnis von (a) und f\u00fchren drei Basis-Schritte von Heapsort durch.\n\nDokumentieren Sie die\nZwischenergebnisse so wie in der Vorlesung und \u00dcbung. (\n\n6P)\nFachhochschule Graub\u00fcndenFachhochschule Graub\u00fcndenAUFGABE 6: (6 Punkte)\n(a) Bestimmen Sie die Balancefaktoren des bin\u00e4ren Suchbaums.\n\nHandelt es sich um ein AVL-Baum? (\n\n2P)\n(b) L\u00f6schen Sie aus dem AVL-Baum das Element \u00ab17\u00bb.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\n(c) F\u00fcgen Sie danach das Element \u00ab15\u00bb hinzu.\n\nIst es danach noch ein AVL-Baum? (\n\n2P)\nFachhochschule Graub\u00fcnden", + 18240, + 11040619, + null, + "md", + null, + [ + -0.018229347, + -0.38892946, + 0.31161425, + -0.998932, + -0.04421944, + 0.012323308, + 0.056399006, + 0.34804738, + 0.35307953, + -0.35841677, + 0.3690997, + 0.15030643, + 0.11480969, + 0.61793154, + 0.32586882, + 0.2682585, + -0.044980027, + -0.11192055, + -0.41985622, + 0.1185541, + -0.46477506, + 0.2617688, + 0.1582423, + 0.40720466, + 0.52699876, + -0.09980139, + -0.1658657, + -0.33146667, + -0.48378333, + 0.4715847, + -0.2603933, + 0.22985356, + -0.35564688, + -0.2665626, + -0.37282786, + -0.3708576, + 0.27705535, + -0.17555547, + -0.1007064, + 0.8787912, + -0.6361571, + 0.8462863, + -0.41491386, + -1.0743575, + -0.119222954, + 0.21616627, + 0.351656, + -0.1425808, + -0.14000267, + -0.03204943, + -0.3830869, + 0.43982428, + -0.07756342, + -0.12913339, + 0.27947193, + -0.61557776, + 0.37603986, + 0.15845044, + -0.054483056, + -0.4951737, + 0.21252012, + 0.36411726, + -0.0046239756, + 0.21580538, + 0.59083176, + -0.6260606, + 0.24970117, + -0.20502728, + -0.3359949, + 0.16517954, + 0.2724517, + 0.059889525, + -0.42903987, + 0.16454907, + -0.15162434, + -0.26855993, + 0.6151786, + -0.18166679, + -0.5859667, + 0.8314198, + 0.4218077, + -0.0015567616, + 0.049931765, + 0.42144158, + 0.023435399, + -0.24164206, + 0.17575556, + 0.7778537, + -0.16712096, + -0.4808951, + 0.6233034, + 0.31061238, + -0.22306338, + -0.034370556, + -0.55864716, + -0.2600461, + -0.49306524, + -0.05329446, + 0.39308465, + 0.6799174, + -0.65429705, + 1.0149189, + 0.60166526, + 0.07968297, + 0.5361366, + -0.5028575, + -0.3678366, + 1.2766347, + -0.8330879, + -0.27658212, + 0.603146, + -0.34365514, + 0.11803521, + 0.66272044, + 0.03782097, + -0.15429789, + -0.39171734, + 0.52450746, + 0.87300414, + -0.50774133, + -0.14718792, + -0.4770277, + 0.5875298, + -0.33968338, + -0.057348274, + -0.34422478, + 0.61758184, + 0.0010380298, + 0.25055075, + -0.17092654, + -0.45831773, + -0.014332555, + 0.20707978, + -0.5424851, + -0.58927, + -0.40313384, + 0.291591, + 0.15818128, + -0.18096143, + -1.1520605, + 0.14482614, + -0.33832714, + -0.34577534, + -0.4189722, + 0.54026145, + -0.29661858, + -0.013932389, + 0.3942689, + -0.59777224, + -0.25342214, + 0.13924825, + 0.71153593, + 0.8341156, + 0.41663066, + 1.8186315, + 0.5404852, + -0.3953351, + -0.27634558, + -0.15979046, + 0.15899405, + 0.18873337, + 0.7713568, + -0.9970588, + -0.9028517, + -0.12983763, + 0.33623406, + -0.33942837, + -0.14162262, + 0.07100285, + -0.4347438, + 0.022010744, + -0.100848645, + 0.084925756, + -0.6840328, + -0.26973814, + 0.31043303, + -0.091202885, + -0.4218042, + -0.23496455, + 0.09538148, + 1.0878911, + 0.48636362, + -0.5418434, + -0.24636929, + -0.013851576, + 0.0721021, + 0.29699033, + 0.007336747, + -0.29217142, + 0.0568149, + 0.441849, + -0.41095084, + -0.106402114, + 0.09873009, + -0.21215427, + 0.47781408, + -0.36138004, + 0.005564302, + -0.41996172, + -0.6707829, + 0.94199574, + -0.64256895, + -0.42259702, + -0.375621, + -0.2737278, + 0.23330274, + 0.5756949, + -0.19174035, + 1.1457402, + -0.53672636, + 0.30635548, + 0.3384524, + 0.80478215, + 0.9900275, + 0.04303173, + -0.71226245, + 0.7321291, + 1.3905417, + -1.3358728, + -0.80769503, + 0.16552304, + -0.5667762, + -0.75118524, + -0.4930314, + 0.25538325, + -1.0443759, + -0.18207371, + 0.3469569, + 0.5496786, + 0.21378389, + -0.06737299, + -0.10585939, + -0.050389178, + -0.09389816, + -0.7647808, + 0.19850203, + -0.23627529, + 0.39635578, + -0.34711558, + -0.34446058, + 0.36801925, + -0.41110456, + 0.2166468, + 0.5072785, + 0.7598471, + 0.13406558, + 0.16882932, + 0.39486572, + -0.0680946, + 0.2502569, + 0.7689801, + -0.7969756, + -0.009615103, + -0.15787393, + 0.3503063, + 0.44763875, + 0.2925564, + -0.079661, + -0.20652108, + -0.5655483, + 0.12386164, + 0.35362646, + 0.5001809, + 0.1687677, + -0.24397776, + 0.36151022, + -0.43289745, + 0.3514371, + -0.42866826, + -0.25388494, + -0.4553959, + 0.31875932, + -0.08147031, + 0.07435901, + 0.48942688, + -0.63692045, + -0.17238647, + -0.2586591, + 0.3846915, + -0.43818194, + 0.05904032, + 0.0035344511, + -0.05161597, + -0.27255395, + 0.34643832, + -0.6748918, + -0.1249262, + -0.5344309, + -0.015655324, + 0.07066979, + 0.45409656, + 0.09392263, + 0.3818069, + -0.10677363, + -0.24060169, + 0.43263775, + -0.49030846, + -0.04223478, + 0.12008931, + -0.17562367, + 0.25338557, + -0.16204259, + 0.15212646, + -0.33447888, + -0.35443416, + -0.001737617, + 0.33329016, + -0.07222566, + -0.15994394, + 0.67969114, + -0.26071313, + -0.32118583, + 0.21294415, + -0.38277954, + 0.15502846, + -0.22226845, + 0.20619917, + 0.13999632, + 0.24121243, + 0.18948224, + 0.035116397, + 0.68141454, + -0.21251358, + -0.2239954, + -0.5722777, + -0.353563, + 0.14526376, + -0.034825005, + -0.30235094, + -0.062367946, + 0.27419096, + -0.16130567, + 0.13423148, + -0.1603713, + 0.0642059, + -0.39987704, + -0.33286893, + 0.41524208, + -0.019982241, + -0.2105211, + -0.0058602653, + 0.05448863, + -0.13675047, + 0.9658878, + -0.3123094, + -0.16285345, + 0.276977, + -0.4323043, + 0.24670798, + 0.11427021, + -0.6502541, + -0.18631539, + -0.023932062, + -0.040818814, + 0.043948643, + -0.27182996, + 0.1819926, + 0.08743136, + 0.36973, + 0.20381969, + -0.041775517, + -0.4341808, + -0.13765702, + -0.18682778, + -0.5030552, + -0.03318193, + -0.089993306, + 0.46894568, + -0.30822432, + 0.018473584, + 0.20325498, + -0.29532567, + 0.119396575, + 0.44659585, + -0.18583336, + 0.24080503, + -0.28012937, + 0.30213684, + -0.5244217, + -0.20940064, + -0.28498858, + 0.08786593, + 0.2541144, + 0.045374736, + -0.059167355, + 0.21902563, + 0.34954053, + -0.48981482, + -0.3553667, + 0.13103248, + -0.31352955, + 0.40137473, + 0.3390946, + 0.47903043, + -0.029377524, + 0.004885504, + 0.0062687173, + 0.89428204, + 0.13411681, + -0.19532733, + -0.27581623, + -0.059906866, + -0.042758252, + 0.06649107, + 0.3376034, + -0.107037246, + -0.3275565, + 0.08542758, + -0.072785504, + 0.30401182, + -0.24870998, + 0.15606639, + 0.20558405, + -0.43860784, + 0.18208586, + 0.08504175, + 0.524622, + 0.53525436, + -0.115856566, + 0.6688049, + -0.046068996, + 0.23320353, + -0.09978776, + 0.47988975, + 0.27435145, + -0.0035621598, + -0.67128056, + 0.17947665, + -0.2735452, + -0.1351381, + 0.45114335, + 0.1415885, + 0.051984277, + 0.1278179, + 0.19339925, + -0.3583363, + 0.38548353, + -0.4179701, + -0.025019638, + 0.2872048, + 0.6347997, + 0.25344118, + -0.23386009, + -0.3437534, + 0.50749433, + -0.21190818, + -0.04043909, + -0.11562124, + -0.1844245, + 0.36392206, + -0.38555613, + -0.0841493, + -0.011907487, + 0.25210756, + -0.27303907, + -0.67684287, + 0.07739195, + -0.14256062, + 0.09494643, + -0.37412065, + 0.07879837, + 0.02760696, + 0.74798006, + -0.1921193, + 0.03745932, + -0.25477254, + -0.10415161, + -0.18509343, + -0.0069691287, + -0.039108697, + 0.19168107, + 0.7282998, + 0.028168857, + 0.07410474, + -0.019786596, + -0.22739558, + -0.28408796, + -0.2569203, + 0.019245874, + 0.5297329, + -0.1272976, + 0.6565297, + 0.4344055, + 0.16363716, + -0.43685853, + 0.11439312, + -0.11398915, + -0.12823598, + -0.07585599, + 0.46079487, + 0.16451138, + -0.48338264, + -0.20386282, + 0.33779445, + -0.14579774, + -0.25565612, + 0.16507417, + 0.1870849, + -0.16147012, + 0.45945483, + 0.06192082, + 0.07872937, + 0.8355732, + -0.60722905, + 0.027040295, + -0.26177773, + -0.15440087, + 0.19818307, + -0.10661499, + 0.1503135, + -0.18273343, + 0.09991827, + -0.044943303, + 0.09000377, + -0.37091625, + 0.45061427, + -0.007877663, + 0.20330086, + -0.044130635, + -0.2723735, + -0.0751419, + -0.478388, + -0.16905817, + 0.22130693, + -0.086562924, + -0.066582784, + -0.064444855, + -0.51260114, + 0.17492774, + 0.14611411, + -0.53830856, + -0.43540722, + 0.27119192, + 0.08023027, + -0.120942935, + -0.39865977, + 0.11607893, + 0.11479404, + 0.06996767, + 0.4214141, + -0.07742136, + -0.23684804, + -0.5008473, + 0.606261, + -0.6358237, + -0.38973525, + -0.17402242, + -0.0055573657, + -0.42926174, + -0.0012840331, + -0.4609781, + 0.3518194, + -0.3486486, + 0.05429156, + -0.11537174, + 0.041738637, + -0.009058211, + 0.14988147, + 0.29864255, + 0.15790433, + 0.32948518, + 0.24843192, + 0.1815826, + -0.05169136, + -0.55581814, + -0.6451794, + -0.36288118, + -0.17284256, + 0.046965428, + 0.121676356, + -0.08904963, + -0.041933037, + -0.04235173, + -0.14947546, + 0.47157097, + 0.5569694, + 0.2884232, + 0.30457747, + -0.10511264, + -0.19000491, + -0.5133766, + -0.112978354, + 0.78154165, + 0.50641227, + 0.4522264, + -0.5294063, + -0.12479051, + -0.28724095, + -0.17710923, + 0.07329555, + 0.19793797, + 0.032984685, + -0.33899304, + -0.038813353, + 0.07340428, + -0.13955446, + -0.085322246, + -0.503956, + -0.08425811, + -0.36768347, + 0.2573258, + 0.6481876, + -0.15966395, + -0.046988346, + 0.6221118, + -0.20062491, + 0.67258936, + 0.42340744, + 0.08976433, + 0.11112916, + -0.3671008, + -0.14531773, + -0.14288002, + 0.07632336, + 0.004283201, + -0.08826988, + -0.025962383, + 0.012545101, + -0.31878218, + -0.24617323, + 0.096753076, + 0.30672807, + -0.21176839, + 0.2829942, + -0.029912943, + 0.39350352, + 0.4040698, + 0.15272102, + 0.8812311, + -0.5271896, + 0.47252285, + 0.7781497, + 0.20350254, + -0.022002522, + 0.1221665, + 0.07317624, + -0.64002466, + -0.3055098, + 0.009426033, + 0.42207348, + -0.06335666, + -0.4448423, + 0.0037898829, + 0.013348915, + -0.17157775, + 0.2775989, + 0.25295314, + 0.22898032, + -0.3894848, + 0.18502195, + -0.041814707, + -0.3550853, + -0.043235227, + -0.45665523, + 0.06509272, + -0.23987833, + -0.28020525, + -0.13324238, + -0.028157458, + -0.7596569, + -0.42363608, + -0.07097531, + 0.14894561, + 0.04741678, + 0.30851614, + -0.50894046, + 0.5390944, + -0.22990933, + 0.13007292, + 0.3517871, + -0.45477283, + -0.4510594, + -0.073965944, + -0.22014761, + 0.18206757, + 0.19716668, + 0.34684664, + 0.37089723, + -0.055021096, + 0.54446614, + -0.2247338, + -0.533343, + 0.108561866, + 0.30025923, + -0.29784966, + -0.2573285, + 0.11022765, + -0.101726174, + -0.38798442, + 0.5760529, + -0.08983798, + 0.011150442, + -0.36853144, + -0.026944622, + 0.17506209, + 0.27766454, + -0.6795184, + 0.21785249, + -0.41907167, + 0.28276035, + -1.0258608, + -0.41148737, + -0.13436005, + 0.08078878, + -0.4335461, + 0.5755294, + 0.16989003, + -0.008498371, + -0.14319532, + -0.6014378, + 0.6671432, + 0.066613324, + -0.7454445, + 0.44027686, + -0.38283327, + -0.035588376, + -0.28626272, + -0.20548731, + 0.2865669, + -0.18520164, + -0.19502959, + 0.07265054, + -0.28762037, + -0.19950248, + -0.07282463, + -0.31952727, + -0.3213535, + -0.16874969, + 0.46122915, + -0.14917761, + 0.162947, + -0.009246826, + 0.53336763, + -0.8705404, + 0.09888415, + -0.40653735, + 0.38938388, + 0.027511239, + -0.25161484, + -0.17021312, + 0.38291126, + 0.32822832, + 0.07997799, + 0.07524532, + -0.10827035, + -0.2827577, + -0.2646949, + 0.27239037, + 0.1315653, + 0.1374738, + -0.23992547, + -0.25597024, + -0.015296372, + 0.28959054, + -0.07862954, + 0.076603934, + 0.009404285, + -0.117970854, + -0.18131335, + -0.14829876, + -0.32168055, + 0.03422135, + -0.01776174, + -0.41120923, + 0.06933791, + -0.8406516, + 0.086706206, + -0.10212784, + 0.40903714, + -0.35444257, + -0.11590188, + 0.2722869, + -0.43193713, + -0.4222078, + -0.021239787, + 0.36516953, + 0.14544973, + 0.20796755, + -0.62568617, + 0.45604226, + -0.15401757, + -0.046251427, + 0.24469548, + 0.2688783, + 0.41817942, + -0.014270052, + 0.26363447, + -0.56646806, + -0.34615153, + -0.034759, + 0.41862416, + -0.46545768, + 0.08229132, + -0.13270155, + -0.5677002, + 0.63111234, + 0.2596541, + 0.12283601, + -0.14381596, + -0.5200045, + 0.16247751, + 0.10708432, + -0.026053613, + -0.46887738, + 0.3410792, + -0.36315095, + -0.37799135, + 0.48338407, + -0.09344123, + -0.18602778, + 0.2459087, + -0.23041093, + -0.07316458, + 0.6333394, + -0.21460806, + 0.16264418, + -0.3101555, + -0.615785, + 0.07898238, + -0.48269194, + -0.5539573, + 0.3714304, + -0.17001584, + -0.1920317, + -0.21740521, + 0.18438064, + 0.55829275, + -0.11160733, + -0.1441912, + 0.23416482, + 0.2088845, + 0.36075255, + -0.2636078, + 0.2345444, + 0.10606591, + 0.06909073, + 0.39305392, + 0.13861075, + 0.37287855, + 0.39561936, + -0.059736114, + 0.028581059, + 0.056182273, + -0.40329337, + 0.55491626, + -0.07037347, + 0.40794763, + 0.4534529, + 0.23343173, + -0.13170469, + 0.7594545, + 0.63004977, + -0.34974957, + -0.21886761, + -0.42451602, + 0.2951904, + -0.18564767, + 0.1912238, + 0.10706264, + -0.08987443, + 0.30751154, + -0.67614603, + -0.5998329, + -0.13880143, + -0.0068685487, + -0.44311613, + -0.07512867, + 0.24813911, + 0.04873722, + -0.15885213, + -0.23684226, + 0.2475726, + 0.09944974, + -0.030137006, + 0.34758648, + 0.07211429, + -0.4041363, + 0.09193742, + 0.23618798, + 0.11474047, + -0.21159291, + 0.5940229, + 0.0063367435, + 0.5461079, + 0.08338907, + -0.40724817, + 0.6022566, + -0.43364877, + -0.2473479, + -0.02587109, + 0.3781109, + -0.36189076, + 0.396095, + 0.31727356, + -0.12325859, + -0.04715323, + 0.0019984841, + -0.16817033, + -0.15687348, + -0.34329516, + -0.11947553, + 0.11585216, + -0.15938908, + 0.31871808, + 0.38262844, + -0.10130851, + 0.15439433, + 0.37670603, + -0.17302158, + -0.11083955, + -0.29263696, + 0.46612966, + 0.32472345, + -0.13475867, + -0.3512682, + 0.04604502, + -0.11593554, + 0.26702392, + -0.13062313, + 0.05754915, + 0.33464542, + 0.23133893, + 0.031399533, + 0.15590928, + -0.24748865, + -0.19892445, + 0.43300802, + -0.12593162, + -0.24474227, + -0.21371934, + 0.09796097, + 0.30257678, + 0.26922616, + 0.20498958, + -0.67369646, + 0.17638557, + 0.4599571, + 1.0533913, + -0.53544515, + 0.25076717, + 0.56635267, + -0.12809256, + 0.40096483, + 0.79718053, + 0.54696405, + -0.14584106, + -0.053031515, + 0.25434327, + -0.066534, + -0.25895834, + 0.64243287, + 0.8302413, + -0.4680212, + -0.14579968, + -0.18870805, + -0.2210941, + 0.30907232, + -0.049101323, + 0.27654153, + -0.41045102, + -0.16563392, + -0.5355203, + -0.29183426, + -0.10685755, + -0.15846011, + 0.26668125, + 0.027506568, + 0.6006899, + -0.007644766, + 0.075106, + 0.29561883, + -0.27969143, + 0.09134356, + 0.70824856, + 0.2531883, + -0.17030288, + 0.035528224, + -0.20337613, + -0.41391578, + 0.269198, + -0.5355944, + 0.1501446, + -0.6192578, + 0.10445654, + -0.043698445, + -0.5165609, + 0.13628751, + 0.09448125, + 0.5168838, + -0.11068532, + -0.04298596, + 0.39610946, + 0.449314, + -0.2734397, + -0.45600155, + 0.13727772, + -0.33093995, + 0.066970214, + -0.42359304, + 0.1823718, + 0.14154774, + 0.14137585, + 0.37864006, + 0.20897156, + -0.9816803, + -0.069341645, + -0.3710667, + 0.48590592, + 0.3089084, + -0.50681055, + 0.2535409, + -0.007899631, + 0.41618562, + 0.043761127, + 0.4979268, + 0.056253623, + 0.38821036, + -0.05175347, + 0.03183897, + 0.4026068, + -0.33801413, + -0.26499084, + 0.1655985, + 0.94635916 + ], + "2025-05-20T11:42:57.229015", + "2025-05-20T11:42:57.229015", + -48.5946006775, + 24.0425033569, + -75.3658218384, + "2", + "ID: 11040619
Cluster: 2
Chunk: )\n(b) Suchen Sie den Schl\u00fcssel mit dem Wert 5.\n\n\n\nWelche Schl\u00fcssel m\u00fcssen f\u00fcr diese Suche abgefragt werden.\n\n\n\n(2P)\nFachhochschule Graub\u00fcnden(c) L\u00f6schen Sie das Element mit dem Schl\u00fcsselwert 5.\n\n\n\nWie..." + ], + [ + 11720, + "von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton: In 2-dim mit inv.\n\nHesse-Matrix l\u00f6sen M. B\u00fcnner B3.02\n19 09.05.2025 13:30-15:00 Fr 4.4 Steepest Descent M. B\u00fcnner B3.02\n20 15.05.2025 13:30-15:00 Do 5.\n\nRestringierte Optimierung in 2D linear M. B\u00fcnner B3.02\n20 16.05.2025 13:30-15:00 Fr in 2D nichtlinear M. B\u00fcnner B3.02\n21 22.05.2025 13:30-15:00 Do Linear Programming M. B\u00fcnner B3.02\n21 23.05.2025 13:30-15:00 Fr Nonlinear Programming M. B\u00fcnner B3.02\n22 30.05.2025 13:30-15:00 Fr \u00dcbungen M. B\u00fcnner B3.02\nM. B\u00fcnner B3.02\nHinweis:\n- Zwischen den Pr\u00e4senzterminen werden Coachings angeboten, die Termine dazu werden in der Pr\u00e4senzveranstaltung vereinbart.\n\nUnterschrift DozentLeistungsnachweis\nK\u00fcrzel cds204\nName Effiziente Algorithmen\nTyp Modul\nECTS 4\nProzent Art Form Hilfsmittel Bemerkungen Dauer (minuten)\n100%abgesetzte Modulschlusspr\u00fcfung schriftlich closed book eigener Taschenrechner nicht programmierbar 90\nFormelsammlung\nkeine\nUnterschrift Dozierende", + 18240, + 6201665, + null, + "md", + null, + [ + -0.5218154, + 0.13426243, + 0.46825144, + 0.22017159, + -0.27285972, + -0.035619803, + -0.3280491, + -0.19852506, + -0.15948859, + -0.4725128, + -0.87682056, + 0.38066867, + 0.68204814, + -0.77832884, + -0.29271296, + 0.8834769, + 0.22653359, + 0.1016869, + -0.29083347, + -0.7487563, + -0.9182125, + 0.06628891, + 0.4982129, + 0.79736966, + -0.7450637, + 0.021702912, + -0.49623805, + 0.32254717, + 0.39165622, + 0.6728145, + -0.20694828, + 0.38492647, + -0.13712877, + -0.6826968, + -0.7857164, + -0.29346603, + 0.3428663, + -0.048117593, + -0.95306414, + 0.53566486, + -0.20467556, + 0.63607115, + -0.1496102, + -0.9485281, + 0.45382833, + 0.44047022, + -0.6616231, + -0.49611348, + -0.0354804, + -0.4474402, + -0.39687717, + 0.32648695, + 0.17350808, + -0.7532869, + 0.769027, + -0.67411536, + 0.117820635, + 0.30585504, + 0.046293132, + 0.2492061, + 0.16829395, + -0.2062184, + -0.278263, + 0.0012786962, + 0.82924294, + -0.87960845, + 0.5231796, + -0.26407936, + 0.6066569, + 0.16336958, + 0.028656576, + 0.3724637, + 0.46770346, + -0.97330654, + -1.0355835, + -0.3733744, + 0.14204958, + -0.5127339, + 0.6391472, + -0.59550565, + -0.15315467, + 0.37998617, + -0.05196143, + 0.08567929, + -0.53681874, + -0.018131074, + 0.38652351, + 1.1281778, + -0.3159947, + -1.0691673, + 0.36076418, + 0.48334903, + -0.06896688, + 0.07090432, + -0.07764115, + -0.08227758, + 0.29714742, + -0.081590414, + 0.6832677, + 0.7774029, + -0.314649, + 0.8276121, + -0.3924025, + 0.4329938, + -0.63456583, + -0.3158543, + -0.6964059, + 0.7656432, + -0.29358765, + 0.044251714, + 0.5935919, + 0.08938551, + -0.36284658, + 0.7545475, + -0.2028428, + -0.4807071, + -0.6926457, + 0.20502637, + -0.12512188, + 0.11939093, + -0.011196971, + -0.40626916, + -0.16938147, + -0.75261956, + -0.030658351, + -0.39992115, + 1.0128741, + 0.5763147, + 0.027004955, + 0.113120094, + -0.19180319, + 0.39681336, + -0.099628955, + -0.085582584, + -0.39028254, + -0.43208677, + 0.031582244, + -0.14368996, + 0.54561144, + 0.20986195, + -0.8832573, + -0.8245904, + -0.25391674, + -0.12113949, + 0.47220448, + 0.28532746, + 0.113132775, + 0.29402786, + -0.41964287, + -0.24846517, + -0.53709227, + 0.41627502, + 0.007310286, + 1.4646508, + 0.23564908, + -0.7364678, + -0.71275187, + 0.43716463, + -0.15782805, + -0.3138234, + -0.5173079, + 0.008949224, + -0.45010677, + -0.13360988, + -0.3119706, + 0.95392275, + -0.16856728, + -0.33357173, + 0.5980733, + -0.7959715, + 0.38458765, + 0.70427257, + -0.0019510202, + -0.43840918, + -0.12841393, + 0.18648659, + 0.35626036, + 0.7374676, + 0.44698882, + -0.22703958, + 1.3622394, + 0.13820499, + -0.2739477, + -0.006104946, + -0.19188985, + -0.109438434, + -0.6390778, + -0.225923, + -0.06388359, + 0.58258075, + -0.59225315, + 0.28762913, + -0.27440026, + -0.12751752, + 0.6774172, + 0.4072271, + -0.09557539, + -0.45952606, + -0.15082344, + -0.46075124, + 0.5732196, + 0.2384744, + -0.5457002, + -0.04137841, + -0.09995257, + -0.24340849, + -0.23462786, + -0.090103514, + -0.013755925, + 0.39444718, + 0.42010134, + 0.017828332, + 0.8866703, + -0.068708844, + -0.17098089, + -0.5544612, + 0.09877368, + 0.3259165, + -0.09796945, + -0.45208776, + -0.054847404, + 0.2895752, + -0.23011853, + 0.21533857, + 0.65269035, + -0.938801, + 0.1060358, + 0.4805067, + 0.23852192, + -0.069653586, + -0.037512954, + -0.042256646, + -0.6129068, + -0.09447493, + -0.6339869, + -0.38920578, + 0.70324785, + 0.58179927, + 0.087214425, + -0.06344677, + 0.8160053, + 0.036546916, + 1.1522737, + -0.62548345, + 0.3006102, + 0.35481608, + 0.29935613, + 0.11245796, + 0.2757133, + 0.5268078, + 0.30976167, + -0.08117999, + -0.046539973, + 0.253215, + 0.43172544, + 0.43632928, + 0.12647122, + -0.18640372, + -0.4722876, + -0.09509695, + -0.19397604, + 0.12548703, + -0.0736975, + 0.13457043, + 0.04531188, + 0.15440387, + 0.5449947, + 0.2637123, + -0.2127468, + 0.068735465, + 0.14315109, + 0.343789, + 0.104511105, + 0.31635323, + 0.36777532, + -0.09846043, + -0.2073589, + -0.16534005, + 0.4012041, + -0.08074401, + 0.37185463, + -0.008287981, + -0.012111902, + -0.50337684, + 0.3312851, + -0.07554771, + -0.06730955, + 0.47047436, + 0.7569952, + -0.19431521, + -0.5821638, + 0.22945416, + 0.26007044, + -0.44829845, + -0.066208705, + -0.3238306, + -0.16951776, + -0.039687634, + 0.1437713, + -0.45331103, + 0.10925319, + -0.09458986, + 0.09938254, + -0.27249974, + 0.7351562, + -0.21128678, + -0.30086476, + -0.19648156, + -0.18262464, + 0.3975983, + -0.3738102, + 0.018587261, + 0.40805358, + -0.40764877, + -0.15850991, + -0.063035265, + 0.08210201, + 0.025341777, + 0.71950895, + 0.39816374, + -0.027505755, + 0.69080865, + -0.6561295, + -0.009786303, + 0.09360232, + -0.12829322, + 0.13388881, + -0.22216326, + 0.6755814, + -0.09015256, + 0.31525442, + -0.6520814, + 0.70733666, + -0.31127468, + -0.07359955, + 0.08796044, + -0.49167374, + 0.33357805, + -0.20963207, + -0.6901674, + 0.26195112, + 0.23049098, + 0.2566896, + 0.50416934, + -0.2615484, + 0.20364915, + -0.26399082, + -0.103528224, + 0.22187734, + 0.19637743, + -0.089634754, + -0.0024038665, + 0.12750787, + -0.2667323, + 0.20155233, + -0.23961926, + -0.026902154, + -0.5784007, + 0.52988225, + 0.27975446, + -0.04970567, + -0.3082805, + -0.030976977, + 0.37957177, + -0.67208445, + 0.20615438, + -0.16165751, + 0.40992796, + -0.54125524, + 0.06292571, + 0.34602576, + 0.13128854, + -0.13003483, + 0.39964718, + -0.050770823, + -0.53021306, + -0.15054798, + 0.019640934, + -0.0745736, + -0.58269, + -0.30677354, + 0.5991371, + -0.084702864, + 0.24749352, + -0.46418408, + 0.17796494, + 0.30588007, + -0.115597226, + 0.3591769, + 0.7915149, + -0.16346776, + 0.34415647, + -0.2547595, + 0.557577, + -0.13778156, + -0.18177813, + 0.22522505, + 0.09720023, + -0.028348768, + 0.4735776, + -0.14215831, + -0.03965075, + 0.03333099, + -0.16097637, + 0.48469257, + -0.20327547, + -0.3148808, + -0.013054885, + -0.43810052, + 0.11649414, + 0.37586164, + 0.39382353, + 0.38080588, + 0.15568528, + 0.25221074, + -0.0950552, + 0.054740954, + 0.4202591, + 0.26811305, + -0.31241524, + 0.14117825, + 0.17250937, + 0.9773261, + 0.05627183, + 0.4708211, + 0.46227318, + -0.3752956, + 0.23611245, + -0.49984804, + -0.1754927, + -0.0037310794, + -0.1079863, + -0.1991246, + 0.18798774, + -0.00787558, + -0.5548052, + 1.1306132, + 0.2124961, + -0.10995563, + -0.07259962, + -0.20488018, + -0.18622568, + 0.5115443, + -0.8214248, + 0.014191566, + -0.36520302, + -0.115861505, + 0.09461191, + -0.57542086, + 0.35698354, + -0.121462375, + 0.21045548, + -0.11836136, + 0.19236438, + 0.31922945, + -0.2516531, + 0.038711816, + -0.3933941, + -0.35398993, + 0.25637472, + -0.37381804, + 0.16288649, + -0.2153278, + -0.10002929, + -0.019279402, + -0.3956693, + -0.2484479, + -0.20767862, + 0.2506019, + -0.4375528, + -0.105473496, + -0.029040743, + 0.36207384, + 0.3775444, + 0.055385664, + -0.31955713, + -0.00752512, + -0.20883751, + -0.44460788, + 0.17438324, + 0.061688546, + 0.12023168, + 0.031900883, + 0.2888649, + -0.058811452, + 0.050583616, + -0.07790621, + -0.103337534, + 0.31411296, + 0.016671777, + 0.66554683, + -0.04194095, + 0.26946428, + 0.51145136, + -0.017753713, + -0.66459787, + -0.44526556, + 0.6279247, + -0.09880185, + 0.6404824, + -0.12499446, + 0.133944, + -0.11112064, + -0.5474458, + -0.107058965, + -0.31820634, + -0.105399124, + 0.2382508, + -0.09079871, + -0.2376006, + 0.21089727, + -0.21113336, + -0.50063235, + -0.3071646, + -0.0989658, + -0.14071453, + 0.038850434, + 0.121296674, + -0.032739498, + -0.3403598, + 0.0012457073, + 0.20050201, + -0.430511, + 0.14966497, + 0.8911996, + 0.36476782, + -0.3569046, + -0.39971578, + 0.31927553, + 0.11805504, + 0.11938761, + 0.05340088, + -0.024059467, + -0.013140626, + -0.10895747, + 0.2796601, + 0.36414564, + 0.12724015, + 0.117264085, + -0.26920307, + 0.18935283, + -0.37788126, + 0.26491812, + 0.03836885, + -0.39578414, + -0.27399176, + 0.09576878, + -0.45936072, + 0.043470427, + -0.24139321, + 0.1370526, + -0.0915978, + 0.04802484, + 0.39530408, + -0.3033863, + -0.88551193, + -0.08559283, + -0.013042171, + 0.010731339, + 0.17196198, + 0.12199037, + 0.43857682, + 0.5913921, + -0.76172465, + -0.1199759, + -0.042979926, + -0.27538475, + -0.27001467, + -0.0728898, + 0.6410136, + 0.049653575, + -0.6118575, + -0.29711524, + 0.24037957, + 0.48941308, + 0.13205482, + -0.3056218, + 0.044482008, + -0.081156194, + -0.29226223, + -0.26082405, + 0.800202, + 0.19209513, + -0.094285205, + 0.6886291, + -0.5026146, + -0.3717348, + -0.13368788, + -0.16371852, + 0.09436838, + 0.33724025, + -0.097497374, + -0.37112987, + -0.06843208, + 0.36826032, + 0.0818183, + -0.22348644, + -0.2747119, + -0.3776561, + 0.117175125, + -0.13242078, + 0.20043592, + -0.26945555, + 0.03280841, + -0.0040089116, + -0.1872156, + -0.15232569, + 0.21575336, + -0.7612926, + -0.14707524, + -0.6205926, + 0.48913363, + -0.3782239, + 0.23616967, + 0.11709538, + 0.25037113, + 0.052561417, + 0.027815893, + -0.28916466, + 0.43723518, + -0.059445873, + 0.636863, + 0.18809938, + 0.57049876, + 0.07958532, + 0.17305532, + 0.39124405, + -0.0062774904, + 0.503898, + -0.30876368, + -0.15661597, + 0.52583426, + -0.48679233, + 0.27252525, + 0.68553984, + -0.080513656, + -0.038847037, + 0.13802421, + 0.30497715, + 0.13907346, + 0.67069435, + -0.27178293, + 0.54257303, + 0.21552998, + -0.075775236, + -0.17724994, + 0.077523895, + 0.049475014, + 0.08560086, + 0.20922258, + -0.9404488, + -0.19571228, + -0.08674415, + 0.112936325, + 0.08354839, + 0.008865297, + -0.21505122, + -0.30628043, + 0.19815582, + 0.188812, + 0.06379986, + 0.11544903, + 0.123689815, + 0.009653847, + 0.50728315, + -0.12635753, + -0.08147973, + -0.31224707, + 0.00940571, + -0.21201977, + 0.2463466, + 0.088229015, + 0.47462377, + -0.20389467, + 0.26123762, + -0.12720963, + -0.1000029, + 0.07072121, + -0.048272256, + 0.334432, + 0.044561587, + -0.5251232, + -0.28216928, + -0.69202906, + -0.1754408, + -0.6967542, + 0.014111526, + -0.246032, + -0.022688538, + 0.029565163, + -0.7760069, + 0.22704361, + -0.24042653, + -0.45579317, + 0.20461822, + 0.42413843, + -0.2252774, + -0.04770711, + -0.04948879, + 0.263637, + -0.27865395, + 0.28368694, + 0.08015992, + 0.14739908, + -0.20991579, + -0.2049225, + -0.81662875, + 0.5266047, + 0.12261209, + -0.11437316, + -0.13735822, + 0.57897866, + -0.0663403, + 0.006658539, + -0.65256155, + 0.18555152, + -0.9480089, + -0.41142985, + -0.6038403, + -0.17173731, + -0.7295063, + 0.13199037, + 0.10280879, + 0.69076866, + 0.083648056, + -0.10172212, + 0.101228535, + 0.111999236, + -0.11536741, + -0.26732275, + 0.0082990825, + -0.21130167, + -0.021774545, + -0.3154509, + 0.5458674, + -0.6411141, + 0.24367085, + -0.11844016, + -0.13519773, + -0.3044447, + 0.48632115, + 0.8006941, + 0.37513155, + 0.25094146, + -0.22720873, + 0.4931678, + 0.34433165, + -0.050538603, + 0.14728737, + -0.23551449, + -0.22003126, + 0.20765723, + 0.10737207, + 0.03030815, + -0.22015391, + 0.18034646, + 0.16651878, + 0.38133097, + 0.078352645, + 0.09627759, + 0.11878823, + 0.18473156, + -0.3735446, + -0.54580003, + 0.2797028, + -0.83601874, + 0.010982415, + 0.100731656, + 0.09634161, + -0.488535, + -0.35092002, + -0.13043837, + -0.65370864, + -0.19786915, + 0.09875173, + 0.68061817, + -0.38968503, + 0.6443573, + -0.7286077, + 0.17616953, + -0.2447235, + -0.2415595, + 0.06652147, + 0.13452877, + 0.31980175, + 0.27025998, + 0.015555918, + 0.01066795, + -0.077336825, + -0.30378532, + 0.32484263, + -0.8433423, + 0.021996524, + -0.12263815, + -0.018726293, + 0.36315084, + -0.19786628, + -0.120964155, + -0.039402217, + 0.017284155, + 0.31246352, + 0.2814462, + 0.24816597, + -0.48401278, + 0.19098657, + 0.3940527, + -0.19750525, + -0.32033142, + -0.32913584, + -0.47498146, + 0.28825587, + 0.11740823, + 0.13189659, + 0.73112, + 0.072895646, + 0.086514324, + -0.3185462, + -0.19566031, + -0.46675187, + -0.2715199, + -0.21552446, + 0.028827041, + 0.34137058, + 0.20380215, + -0.20004453, + 0.042472042, + 0.6920699, + -0.35105112, + -0.22578964, + 0.1168176, + -0.24182712, + 0.5380742, + -0.38166916, + 0.14016229, + -0.40625197, + -0.15129685, + 0.2756821, + -0.30576098, + -0.30310315, + 0.26056603, + -0.754961, + 0.093633935, + 0.11803855, + -0.2995075, + -0.011835106, + 0.17248556, + 0.17824592, + 0.118864775, + -0.3892701, + 0.085995935, + 0.24911074, + 0.5255613, + -0.11115063, + -0.47906637, + -0.3701433, + 0.09395428, + 0.58050156, + 0.07723803, + 0.0015931902, + 0.06329644, + -0.43098962, + 0.4837343, + -0.4786447, + -0.19599874, + 0.5352669, + -0.6255225, + -0.15144241, + 0.48629045, + -0.04263085, + 0.3098023, + -0.01508981, + 0.331526, + -0.37000778, + 0.08684442, + -0.12284409, + -0.100356966, + -0.09139885, + 0.52123916, + -0.08628828, + -0.27930892, + 0.3738008, + 0.2572375, + -0.0011562984, + -0.16479532, + 0.4593519, + -0.1113591, + 0.81771773, + -0.31759295, + -0.13989103, + 0.24458805, + -0.036107145, + -0.20825037, + 0.07338093, + 0.52146316, + -0.52003807, + 0.184212, + -0.17052552, + -0.44024983, + 0.2009593, + -0.17866465, + 0.16818354, + -0.022748139, + -0.43057233, + -0.012033135, + 0.12271339, + 0.50483054, + -0.27798793, + 0.17789775, + 0.12701146, + -0.58668554, + 0.03632798, + 0.36367613, + 0.1916166, + -0.3890978, + 0.30791497, + 0.42691162, + 0.035812177, + 0.17502831, + -0.9206348, + -0.078505896, + -0.2267856, + 0.015043829, + 0.38227808, + 0.36170214, + -0.27456945, + -0.47960344, + 0.30093563, + 0.07031269, + -0.1994276, + 0.08345346, + 0.4251041, + 0.14488429, + 0.0965112, + -0.008161344, + -0.11101701, + 0.29011542, + 0.40992376, + 0.40148395, + -0.17543253, + -0.15346743, + 0.25607938, + -0.30666542, + 0.29985878, + 0.5871304, + 0.77165866, + 0.20368761, + 0.009256296, + 0.44215554, + 0.09308245, + 0.1360048, + 0.45271876, + 0.42241794, + -0.06726071, + 0.37504214, + -0.29960194, + 0.12961185, + 0.11510573, + 0.43381715, + 0.031512998, + -0.8976091, + 0.16776606, + 0.23242494, + -0.16913465, + -0.2567479, + -0.49470878, + 0.19878198, + 0.2170944, + -0.48253524, + -0.29823598, + 0.10230056, + -0.1448341, + 0.18055469, + -0.072831854, + 0.30260986, + 0.4726785, + -0.05236153, + -0.23567304, + -0.12910676, + 0.22360691, + 0.04732488, + -0.37579983, + 0.0007204786, + -0.045910828, + -0.060151733, + 0.82657385, + -0.34703535, + -0.2988624, + -0.065210775, + -0.67594135, + -0.41743672, + 0.17592362, + 0.06410084, + -0.057956014, + 0.043374926, + 0.19466996, + -0.10271456, + 0.32020754, + 0.27690572, + -0.2919115, + -0.3439978, + -0.08437498, + -0.05503525, + -0.12634538, + -0.13979745, + -0.43783092, + -0.18496895, + 0.18807717, + 0.4498935, + 0.18174666, + 0.10028727, + -0.40126488, + 0.0047668377, + 0.24156255, + 0.44985616, + 0.85849625, + 0.012872249, + 0.2878073, + -0.25471023, + -0.4243075, + -0.5045351, + 0.16361544, + 0.057520743, + -0.056678377, + -0.0073728915 + ], + "2025-05-20T11:43:08.335105", + "2025-05-20T11:43:08.335105", + -89.263923645, + 49.2649116516, + 36.4610939026, + "0", + "ID: 6201665
Cluster: 0
Chunk: von nichtlinearen Gleichungen M. B\u00fcnner B3.02\n4.2 Dowhill-Simplex, Restriktionen, grafische L\u00f6sung, M. B\u00fcnner B3.02\n18 02.05.2025 13:30-15:00 Fr Straffunktionen\n19 08.05.2025 13:30-15:00 Do 4.3 Newton..." + ], + [ + 11721, + "Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.csv\n[xData,yData] = np.loadtxt('DataSinus2.csv',delimiter=';\u2019)\nModellierung der Daten mit einer Funktion aus der Modellklasse\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit 4 freien Parametern a = ( a , a , a , a ).\n\nWas sind die besten Werte f\u00fcr a?\n\n1 2 3 4\nAnsatz mit der Summe der kleinsten Quadrate (Gauss, 17xx):\n\uf0e0 Tafel\n\uf0e0 Optimierungs-Problem mit 4 Design-Variablen\nMin S( a , a , a , a )\n1 2 3 4\nWie wir so was l\u00f6sen ist der Inhalt dieses Kapitels.\n\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nReellwertiges unrestringiertes Optimierungs-Problem mit N Design-Variablen (N Dimensionen)\nMin f(x), x in RN\nMin f(x x x ), (x x x ) in RN\n1 , 2 , ...., N 1 , 2 , ...., N\nBemerkungen:\n1.\n\nAbleitung f\u2019(x) \uf0e0 Gradient gradf(x)\n2.\n\nAbleitung f\u2019\u2019(x) \uf0e0 Hesse-Matrix H(x)\nf(x) ist konvex, falls H(x) positiv definit (alle Eigenwerte positiv) ist.\n\n\uf0e0 Es existiert kein oder genau ein lokales Minimum.\n\nSei f(x) 2-mal differenzierbar, dann gilt f\u00fcr lokale Minima an der Stelle x*:\ngradf(x*) = 0\nH(x*) positiv definit (alle Eigenwerte positiv).\n\nBemerkung: Die Definitheit der Hesse-Matrix m\u00fcssen Sie (noch) nicht selber berechnen k\u00f6nnen.\n\n27.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Himmelblau-Funktion\nMin f(x x )\n1 , 2\nmit (x 2+ x -11) 2 + (x + x 2 -7) 2.\n\n1 2 1 2\n4 lokale Minima:\n\uf0e0 \u00dcbung\n37.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nBeispiel: 2D-Optimierungsproblem mit der Rosenbrock-Funktion\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n1 , 2 1 2 1\nL\u00f6sung f(1,1) = 0.\n\n\uf0e0 \u00dcbung\n47.\n\nReelwertige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\uf0e0 Tafel\nBeispiel:\n1.", + 18240, + 14884748, + null, + "md", + null, + [ + -0.8677129, + 0.38449863, + 0.5034417, + -0.103949405, + -0.37239298, + -0.27794132, + 0.391599, + -0.10016646, + -0.023383643, + -0.031077437, + -0.52423716, + -0.08872123, + 0.30995914, + 0.6822999, + -0.119418964, + 0.09067443, + 0.016116112, + 0.6925044, + 0.024169125, + -0.37904954, + -0.22198641, + -0.31751263, + 0.48463133, + 0.5453157, + 0.35345456, + 0.7434466, + 0.1971786, + 0.27662086, + 0.31977284, + 0.11300657, + 0.38406906, + -0.32944775, + -0.46555632, + -0.26303253, + -0.2412845, + -0.16615452, + -0.09764955, + 0.138378, + -0.27564964, + 0.7271903, + -1.0877059, + 0.44274616, + 0.37875715, + -0.11933943, + 0.07187103, + -0.6586425, + 0.035883073, + -1.042075, + -0.15784395, + 0.053753465, + -0.031198114, + -0.103145376, + -0.15183139, + -0.59188896, + 0.10971694, + -0.27303588, + -0.40526977, + -0.0869248, + -0.05297426, + -0.25260413, + 0.04365085, + -0.23578796, + -0.7966782, + 0.09036963, + 0.452434, + 0.24238236, + 0.28812692, + -0.20868042, + 0.29509905, + -0.12493083, + -0.3010679, + 0.50919765, + -0.42243803, + -0.41971892, + -0.93814427, + -0.23934957, + -0.43682522, + 0.6736841, + 0.09638877, + 0.4810211, + 0.18408929, + -0.53635347, + -0.22674835, + 0.101652205, + 0.14880627, + -0.31925437, + 0.8440288, + -0.12864676, + 0.061375417, + -0.30611688, + -0.098939754, + 0.12083363, + -0.18445729, + 0.1351458, + 0.53739446, + 0.2281075, + 0.17733218, + -0.40644616, + 0.36716953, + -0.016572032, + 0.17759605, + 0.065675505, + 0.29980537, + -0.64304966, + 0.028423548, + -0.008231394, + -0.12983397, + -0.2820076, + -0.35806096, + 0.44388634, + 0.62119794, + -0.75148696, + -0.29382035, + 0.14242853, + -0.24385549, + -0.6800736, + -0.3454406, + -0.20770605, + -0.2042584, + 0.14490873, + -0.080112845, + 0.27112952, + -0.23611274, + -0.2161046, + 0.19382887, + 0.09770059, + 0.31514162, + 0.774359, + -0.23147704, + -0.003095895, + -0.15588859, + 0.29996982, + 0.42214027, + -0.09385395, + 0.46597993, + 0.5464366, + -0.038051672, + 0.0030920692, + 0.1990273, + -0.681958, + 0.16675544, + 0.34496507, + -0.22195175, + -0.32797444, + 0.109007716, + 0.21384503, + 0.03738403, + 0.05435601, + 0.15479521, + -0.29673594, + -0.09295349, + 0.18050678, + 0.027905606, + 0.07845414, + -0.29401833, + -0.14570965, + 0.3295235, + -0.24244596, + -0.13325219, + 0.012187282, + -0.103971034, + -0.06908074, + -0.84419745, + 0.34697175, + -0.23199153, + 0.24222499, + -0.5815965, + 0.28281265, + 0.71487343, + 0.1252636, + -0.1227448, + -0.09130621, + -0.168206, + -0.07549646, + 0.14523718, + 1.6633526, + 0.1610722, + -0.7115796, + 0.19960459, + -0.04375214, + -0.02838863, + 0.25009215, + -0.50758046, + -0.2598561, + 0.30307338, + 0.30086303, + 0.27397737, + -0.45196956, + -0.10006909, + 0.2792545, + -0.023812154, + -0.35895404, + -0.54393876, + -0.19758372, + 0.32256964, + 0.09416733, + -0.2528673, + 0.0778212, + -0.2748389, + -0.06915656, + 0.37298128, + -0.48562604, + 0.0060008327, + -0.40627667, + -0.3575734, + -0.27067968, + -0.06875092, + -0.14482649, + 0.060018558, + -0.36958233, + 0.49518332, + -0.3162845, + 0.09303108, + -0.20803663, + -0.18165958, + 0.5659846, + -0.48165172, + -0.102702856, + -0.42841363, + -0.3648612, + 0.3442935, + -0.46712753, + -0.59087294, + 0.049332406, + 0.17716768, + 0.16116758, + -0.83777755, + 0.28441545, + 0.37038293, + 0.71866536, + 0.51192796, + 0.093074724, + 0.051387366, + -0.38548055, + 0.18472138, + -0.017110698, + 0.1538242, + 0.14527044, + 0.31607857, + -0.16547666, + 0.68981576, + 0.5073639, + -0.18169786, + 0.4614051, + 0.37481943, + -0.052386027, + -0.024014503, + 0.15356691, + -0.18409531, + 0.75584877, + -0.09637005, + -0.736194, + 0.015269533, + 0.053498026, + 0.05985881, + -0.37694034, + -0.045637425, + -0.014637537, + -0.27062765, + -0.29781878, + -0.5737223, + -0.009884398, + 0.33445743, + 0.47960562, + -0.17302854, + 0.7136193, + 0.54339045, + -0.006606519, + 0.26491672, + 0.31028005, + -0.25991896, + -0.15360041, + 0.31963262, + -0.22841227, + 0.66674244, + -0.36413848, + -0.78559417, + -0.077981025, + -0.35983363, + -0.4534709, + 0.09522638, + 0.19765519, + -0.23908812, + -0.20034929, + 0.30460328, + 0.17641485, + -0.25683525, + 0.015473574, + 0.06362705, + 0.3641251, + 0.06619412, + 0.14222832, + 1.1262512, + 0.10304833, + -0.35582897, + 0.6465648, + -0.09623715, + -0.034866333, + -0.18480788, + -0.3312717, + 0.46756756, + 0.37822342, + 0.6008807, + 0.049791206, + -0.36018905, + -0.016300328, + -0.059023544, + 0.28188148, + -0.73611987, + 0.40895593, + 0.169596, + -0.23356524, + 0.3284422, + -0.669259, + -0.018203467, + 0.4982425, + 0.011358835, + 0.29135782, + 0.48597714, + 0.044430777, + -0.68159646, + 1.306906, + 0.19303651, + -0.5479763, + -0.29159304, + -0.009169091, + -0.0001710318, + -0.47501424, + -0.7192249, + 0.065791115, + -0.17551464, + -0.2464306, + 0.21572736, + 0.815026, + 0.64819217, + 0.1574907, + -0.37782452, + 0.26763934, + -0.7702413, + -0.5461974, + -0.25644982, + 0.3952051, + -0.20841339, + 0.57553196, + -0.0586333, + -0.6636062, + -0.15291402, + -0.3240711, + -0.3628856, + -0.1823779, + 0.012059867, + -0.048033316, + 0.4499089, + -0.06053359, + -0.29176453, + 0.5130901, + 0.14416158, + -0.110812366, + -0.73263246, + 0.37775844, + 0.10316746, + -0.31787303, + 0.096167475, + -0.09379882, + 0.5288756, + -0.4892546, + -0.031770237, + 0.14766121, + -0.76784116, + 0.25138813, + 0.6208266, + -0.6818288, + -0.056409694, + 0.462582, + -0.4022105, + 0.34568053, + -0.7380424, + 0.6711152, + -0.24993435, + -0.01905682, + 0.91082776, + -0.17760576, + -0.28174835, + 0.023053562, + -0.65945476, + 0.6019287, + 1.5996196, + 0.25297853, + 0.21260265, + -0.381912, + -0.74125075, + -0.093818076, + -0.23531258, + 0.0071410164, + -0.24285987, + -0.019667689, + 0.5657288, + 0.69840294, + 0.2814387, + -0.5541072, + 0.15680724, + 0.4012352, + -0.19089532, + -0.0026431158, + -0.15500891, + -0.23506105, + -0.07436065, + 0.46535337, + -0.091493234, + 0.037556052, + 0.005591914, + 0.3419546, + 0.28339228, + -0.21983847, + 0.32518375, + 0.13626593, + -0.24531695, + 0.17158146, + 0.10525578, + 0.23198134, + 0.26012948, + 0.53322047, + -0.9648679, + 0.90402687, + 0.039599337, + -0.43984714, + -0.378577, + 0.6017511, + -0.23190522, + 0.1312438, + 0.34893507, + 0.076806605, + -0.051398624, + 0.19090651, + -0.39541277, + -0.22934592, + 0.52820617, + -0.29334238, + -0.11541413, + -0.04223468, + -0.041821554, + 0.0034344627, + 0.2462338, + -0.11726464, + 0.50051326, + -0.8151443, + -0.4832029, + 0.6653512, + -0.12973036, + 0.5524119, + -0.50332665, + 0.30068585, + -0.034295138, + -0.23812892, + 0.09758387, + -0.045340076, + -0.6871018, + 0.39823443, + 0.5138103, + -0.5840707, + 0.015899941, + 0.11490649, + 0.07205135, + -0.3296798, + 0.19743356, + -0.9364305, + 0.06340994, + -0.042909876, + 0.013973061, + -0.24161068, + 0.10627599, + -0.009756349, + -0.27846095, + 0.09640506, + -0.35589784, + 0.077770665, + -0.011339266, + 0.013920005, + -0.43086788, + 0.17021142, + 0.30862954, + 0.22162254, + 0.4477195, + 0.064791575, + 0.45378208, + -0.4040275, + -0.52942157, + 0.14406, + -0.6026994, + -0.5591655, + 0.46440226, + -0.43011835, + 0.32298824, + 0.29451442, + 0.65272284, + -0.221356, + -0.43158746, + 0.4219503, + 0.4975808, + 0.17689916, + -0.30817658, + -0.30384213, + 0.95060647, + -0.23652042, + -0.30024755, + -0.07645939, + 0.0733212, + 0.16238865, + -0.18126218, + -0.2966465, + 0.16946591, + -0.43085986, + -0.29835203, + 0.32510453, + 0.39320734, + 0.15220177, + 0.17522997, + 0.65690917, + -0.20209219, + -0.10321963, + 0.19027215, + 0.18424836, + -0.73269117, + 0.2898218, + -0.37705627, + 0.51666987, + 0.7672682, + -0.64380807, + 0.30989614, + 0.51319575, + -0.32414466, + 0.21376249, + 0.083515674, + -0.22867873, + -0.18729015, + 0.14172065, + -0.38412035, + 0.10191991, + -0.10710148, + -0.05246751, + -0.21779926, + 0.07429393, + -0.12470798, + 0.38702637, + -0.18808863, + -0.18495947, + 0.5583241, + 0.124198265, + 0.15450348, + -0.09098953, + 0.007678151, + 0.57476836, + 0.41003406, + -0.24130413, + 0.13162845, + -0.1277788, + 0.23713018, + -0.17239177, + 0.23606801, + 0.3333812, + 0.51908827, + -0.70675296, + 0.23831646, + -0.25382963, + 0.4951212, + -0.009558823, + -0.6993225, + 0.035746865, + 0.20331752, + 0.08372225, + -0.3498374, + -0.4089707, + -0.196937, + -0.44820562, + 0.39827922, + 0.0036188187, + 0.21423906, + -0.1814257, + 0.53104657, + 0.08921651, + -1.0334971, + 0.4518866, + -0.14956109, + 0.004806474, + 0.27276465, + -0.30744827, + -0.40481853, + -0.28853542, + -0.14925465, + 0.22222932, + 0.07904996, + -0.3883312, + -0.3581035, + 0.44300574, + 0.03373395, + 0.27324477, + 0.11624448, + 0.11493146, + -0.5149105, + -0.052048173, + 0.060577117, + -0.21792203, + -0.14050321, + -0.5332819, + -0.010245204, + 0.14973362, + 0.2569172, + -0.107157245, + 0.0024622157, + 0.32707268, + -0.4417266, + -0.026580062, + 0.14463358, + -0.089791134, + -0.09782401, + -0.71642166, + 0.09287296, + -0.77060926, + -0.19709383, + -0.9194681, + -0.1525639, + 0.11933191, + -0.30900234, + 0.056231417, + -0.11771465, + -0.2341075, + -0.25086987, + -0.010427795, + 0.5463162, + -0.015200205, + 0.6907332, + 0.1251505, + -0.15353295, + 0.93630445, + -0.039746102, + 0.09907111, + 0.1975646, + 0.04889652, + -0.1433468, + 0.3049885, + 0.060058147, + -0.023704857, + 0.17339277, + 0.48334795, + -0.30187047, + 0.12775701, + 0.22413976, + -0.53795075, + -0.38364974, + -0.17576103, + 0.12658387, + -0.114055455, + -0.07828965, + 0.5668642, + 0.06426323, + 0.22402683, + -0.6582414, + 0.06911688, + 0.83234197, + -0.5209273, + 0.2633744, + -0.6817556, + 0.3021385, + -0.17187938, + -0.32426077, + -0.096244305, + -0.018647477, + -0.25529093, + 0.30987966, + -0.095037945, + -0.35419542, + -0.27126974, + 1.0650063, + -0.26310295, + -0.08838308, + -1.0539042, + -0.24714902, + -0.11333246, + -1.0921423, + -0.42081082, + -0.15082797, + 0.028857294, + 0.033628143, + -0.21495612, + -0.2926299, + 0.1364038, + -0.030147232, + -0.20777914, + -0.5498395, + 0.50716555, + -0.3051731, + -0.10668424, + -0.5117071, + 0.12857714, + -0.88723874, + 0.25836244, + -0.18638407, + -0.24000427, + -0.044420496, + 0.49543738, + -0.7401626, + -0.31390744, + -0.5273016, + 0.55183375, + -0.015544508, + 0.19205777, + -0.010901431, + -0.099134326, + -0.48734608, + 0.80785024, + 0.022555793, + -0.27516332, + -0.29016322, + -0.35983434, + -0.027943376, + 0.10598241, + -0.09317787, + 0.19764309, + -0.17613566, + 0.048859157, + -0.25866, + -0.22007926, + 1.6601874, + -0.40900025, + 0.06020231, + -0.79781055, + 0.4681639, + -0.64713144, + 0.3598972, + -0.21131645, + 0.05815424, + -0.12314162, + -0.2858745, + 0.030169833, + -0.052484076, + -0.18478534, + 0.44099146, + -0.05709669, + 0.5503408, + 0.33285037, + -0.100567885, + 0.11988016, + 0.5661539, + -0.091002785, + -0.31044957, + 0.32355103, + -0.14730209, + -0.06930457, + -0.36410898, + 0.038085222, + -0.20999917, + -0.20859714, + 0.43130717, + -0.3971459, + 0.57021314, + 0.7151627, + 0.119030416, + 0.5034935, + 0.12971756, + -0.65661633, + -0.2685146, + -0.09698045, + 0.23475562, + 0.15049213, + 0.18724608, + -0.63479304, + 0.2627019, + -0.036174, + 0.48992413, + -0.49662024, + 0.20204961, + -0.014105301, + 0.5137299, + 0.07478692, + -0.27245393, + 0.49982172, + 0.87719613, + 0.40007007, + 0.011821356, + -0.12646848, + 0.21478756, + -0.02822202, + -0.6973522, + 0.46360746, + 0.486054, + 0.4324904, + 0.27049655, + -0.44782555, + 0.014330321, + 0.018207435, + 0.4861571, + -0.7922483, + -0.23233037, + -0.17783, + -0.17224686, + 0.25534725, + -0.34727436, + 0.40245464, + -0.303128, + -0.5797468, + -0.4945861, + 0.11900437, + 0.13080852, + -0.17568514, + 0.2759526, + -0.2915841, + -0.5327422, + -0.28053755, + 0.1247416, + -0.12488551, + 0.106467314, + 0.6328517, + 0.0077252686, + -0.2882198, + -0.32981363, + -0.17046352, + 0.09089766, + -0.15793027, + -0.12152904, + -0.17923546, + 0.13696058, + -0.12376932, + 0.23383996, + -0.12104483, + -0.36869413, + 0.55508417, + -0.03155939, + -1.1426764, + 0.101138234, + 0.29512116, + -0.08330268, + -0.37315777, + 0.038596496, + -0.45735112, + 0.4180167, + 0.99079037, + 0.83949685, + 0.33343226, + -0.009520985, + 0.6837219, + -0.36060882, + 0.4666746, + -0.13402303, + 0.44551027, + 0.38262567, + -0.28743887, + 0.4357034, + 0.06777623, + 0.065609604, + -0.23476627, + 0.8006793, + -0.10427764, + -0.13857622, + 0.23675565, + 0.26692772, + 0.060788624, + -0.17342782, + 0.12369254, + -0.32422072, + -0.25411233, + 0.20705137, + 0.041171245, + 0.9314698, + -0.16665624, + 0.11859638, + 0.45394987, + 0.22712448, + 0.3175522, + 0.2490424, + -0.3943425, + 0.2811667, + -0.017043853, + -0.28900692, + 0.16817608, + -0.1258317, + -0.065623716, + 0.0031274687, + 0.34097397, + 0.12076603, + 0.48703513, + 0.11692874, + 0.56269574, + -0.19112752, + -0.07311919, + 0.34374535, + -0.040866055, + 0.20982659, + 0.2763463, + -0.006103985, + -0.40376616, + 0.3670152, + -0.5602858, + 0.9546139, + 0.24567378, + 0.75674933, + 0.41949448, + -0.18829748, + -0.27252668, + -0.11446302, + 0.4484549, + 0.11535596, + 0.20224635, + -0.19448619, + -0.10065386, + 0.61145556, + -0.7360385, + -0.16137218, + -0.04779306, + 0.42038906, + 0.08639246, + -0.006755911, + 0.019409262, + -0.052430686, + 0.37743998, + -0.36329162, + -0.06088482, + 0.098424226, + 0.38755405, + 0.243746, + 0.16758263, + 0.22376105, + 0.04662345, + 0.4879437, + -0.096337944, + -0.41966712, + 0.24392587, + 0.079770096, + 0.031241484, + -0.07760427, + 0.27184457, + 0.30734983, + -0.22552514, + 0.060828116, + 0.1243669, + -0.5601942, + -0.027629115, + 0.27261627, + -0.27021277, + -0.11564485, + 0.06401227, + 0.22415261, + 0.04336218, + -0.011539176, + 0.77503246, + -0.22952406, + 0.29445598, + -0.20714317, + -0.06420124, + 0.13948661, + 0.22448975, + 0.2460634, + 0.5684196, + -0.46527392, + -0.27436405, + -0.13764127, + -0.69873625, + -0.28596783, + -0.29815343, + 0.19255164, + -0.36637872, + -0.3342491, + -0.4475326, + -0.42297924, + -0.14556545, + -0.14411473, + 0.033119533, + 0.20289685, + -0.13487886, + -0.16560218, + -0.046975326, + -0.19783111, + 0.91271216, + 0.061233066, + 0.039050132, + 0.7062236, + -0.22068395, + 0.062226884, + -0.26614362, + 0.29025498, + 0.54727256, + 0.20800003, + 0.25057772, + -0.17716455, + -0.29180112, + -0.088015646, + -0.18260396, + 0.25123534, + -0.2203457, + -0.14444835, + -0.47816253, + 0.14692993, + -0.014917048, + -0.017207861, + -0.11796917, + 0.21907195, + 0.674954, + 0.91696775, + 0.22635794, + -1.0598922, + -0.14739317, + 0.17613263, + 0.064032555, + -0.3697747, + -0.1002355, + -0.52560043, + -0.5298556, + -0.44263285, + -0.2334311, + -0.57108986, + 0.6232847, + 0.23685874, + 0.31788102, + -0.26660678, + -0.03228607, + -0.26121047, + -0.13510889, + 0.013088558, + 0.14346528, + -0.07527533, + 0.0029917061, + -0.07595745, + -0.14442702, + -0.28940168, + 0.039200053 + ], + "2025-05-20T11:43:15.298183", + "2025-05-20T11:43:15.298183", + -10.7878484726, + -120.8395004272, + -2.1933634281, + "5", + "ID: 14884748
Cluster: 5
Chunk: Effiziente Algorithmen\n7.\n\nReelwertige Optimierung in N Dimensionen\nProf.\n\nDr.\n\nMartin B\u00fcnner7.\n\nReelwertige Optimierung in N Dimensionen\n7.0.\n\nDefinitionen\nMotivation:\n20 Datenpunkte in DataSinus2.cs..." + ], + [ + 11722, + "ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidistante Segmente.\n\n\n\nDann werden MN\ni i\nFunktionsauswertungen ben\u00f6tigt.\n\n\n\n\uf0e0 Tafel\nBeispiel:\n1.\n\nN=2, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1002 * 0.001 s = 105 s = 10 s\n2.N=4, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 1004 * 0.001 s = 105 s = 1.2 Tage\n3.\n\nN=10, M=100, Zeit f\u00fcr eine Funktionsauswertung: 1 ms:\n\uf0e0 Rechenzeit: 10010 * 0.001 s = 1017 s = 3.2 Mrd.\n\nJahre (zum Vergleich: Alter des Sonnensystems ca.\n\n13 Mrd.\n\nJ.)\n57.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nheisst auch Downhill-Simplex-Algorithmus. \u00ab\n\nL\u00f6st\u00bb das unrestringierte N-dimensionale reelwertige Optimierungsproblem:\nMin f(x), x in RN\nNelder, Mead (1965)\nBemerkungen:\n\uf0fc f(x) muss stetig sein.\n\n\uf0fc Verwendung in der Praxis f\u00fcr 2 \u2264 N \u2264 10.\n\nF\u00fcr N gr\u00f6sser 10 zu in-effizient.\n\n\uf0fc Vorteil: gradienten-frei\n67.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIdee des Downhill Simplex-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n97.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nf\nGegeben: Simplex S mit n+1 Ecken, x x\n1, \u2026 n+1\nf\nn+1\n1.\n\nWerte f aus und sortiere f(x ) < f(x )< \u2026 < f(x )\nf\n1 2 n+1 n\n2.\n\nBerechne Zentrum der n besten Punkte\n1 n\n\u2211\nx = x\ni\nn\ni=1\nf\n2\nf\n1\n3.\n\nF\u00fchre genau eine Operation\nReflection, Expansion, Contraction oder Shrink\ndurch7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nReflection Spiegele x an Schwerpunkt\nn+1\nf\nf\nn+1\nf\nn\nf\nr\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.", + 18240, + 10192364, + null, + "md", + null, + [ + -0.111103505, + 0.27513874, + -0.024644863, + 0.24044713, + -0.5872487, + 0.96111953, + 0.5122346, + -0.691302, + 0.4659692, + -0.34453544, + 0.18847531, + 0.4933645, + 0.34522104, + 0.5350193, + -0.28161824, + -0.20311373, + 0.117067285, + 0.32576823, + 0.8590197, + -1.1533606, + -0.5475748, + 0.09159811, + -0.13058528, + 0.8629452, + -0.4752931, + 1.0980564, + -0.7857408, + -0.7443192, + 0.06946849, + 0.14316306, + -0.3906342, + -0.31901464, + 0.43394494, + 0.14482668, + 0.700349, + -0.54046154, + 0.012027979, + -0.58589554, + -0.3636956, + 0.8074849, + -0.035246238, + 0.72193784, + 0.94637287, + -0.057660397, + -0.4818987, + -0.9459685, + 0.426641, + -0.24073225, + 0.03905911, + -0.36202306, + 0.29927018, + 0.088483244, + -0.08668699, + 0.055998337, + 0.42429233, + -0.3236404, + -1.1022325, + 0.25999793, + 1.0156186, + -0.66572064, + 0.79095066, + 0.85066855, + 0.18490672, + -0.22072513, + 0.1323617, + -0.16773237, + 0.36906183, + 0.19604814, + -0.06260884, + -0.3321613, + 0.10563393, + 0.51765144, + 0.7490975, + -0.59431475, + -0.47855702, + 0.10457966, + -0.48816273, + 0.22187151, + -0.8715787, + -0.3724749, + 0.4578017, + -0.7814159, + -0.9229843, + -0.59723794, + 0.0002293736, + 0.028854638, + 0.09282501, + 1.3887057, + 0.84512675, + -0.050068732, + -0.5564005, + 0.682424, + -0.08815394, + 0.26165316, + 0.25687027, + 0.12179883, + -0.99874926, + -0.103874505, + 0.72895336, + -0.91126186, + -0.9387794, + 1.1880856, + 0.50154924, + 0.013785372, + 1.0249671, + 0.36208433, + -0.10396211, + -0.0457477, + -0.4055858, + 0.5168971, + 1.5805696, + -0.8802564, + -0.14466336, + 0.6394254, + 0.22152507, + -0.2024416, + -0.21186781, + -0.03292136, + -0.39956343, + -0.12666447, + 0.07643421, + -0.036094476, + -0.054207478, + 0.5138226, + -0.089957446, + 0.48573306, + 0.36451548, + 0.09347132, + -0.044246733, + 0.12626766, + -0.4592264, + 0.25616217, + 0.33580655, + -0.08436628, + 0.2341425, + 0.07892809, + 0.43948466, + 0.07494567, + 1.0932099, + -0.75778556, + 0.008485034, + -0.42240974, + -0.10131782, + 0.13727348, + 0.43647254, + -0.87970406, + -0.22031127, + 0.1567729, + -0.23334907, + -0.09363353, + -0.4460211, + 0.9268179, + -0.28864062, + 0.47182885, + -0.23156954, + -0.08258574, + -0.2297994, + 0.6313963, + 0.13538572, + -0.20187603, + 0.56571424, + 0.7696759, + -0.79431266, + 0.4368948, + 0.11663019, + 0.31233326, + -0.7808127, + 0.65855443, + 0.33996543, + -1.0816233, + 0.37587687, + 0.17600775, + -0.027381213, + -0.8050063, + 0.075424366, + -0.0944002, + 0.46170932, + -1.4345493, + -0.17174888, + 0.11595002, + 0.11734462, + -0.08649758, + 0.042943537, + -0.4136205, + -0.34495184, + -0.112821415, + 0.012079194, + -0.9948861, + 0.1455456, + 0.3224971, + -0.838207, + -0.41613775, + 0.22038084, + 0.18594383, + 0.08062419, + 0.09912556, + 0.21418181, + -0.25426927, + -0.048820205, + -0.21197182, + 0.3159074, + -0.5884119, + -0.714033, + -1.2869436, + -0.6248693, + -0.5181365, + -0.47227705, + -0.35181612, + -0.2769961, + 0.3927185, + 0.355436, + -0.32014567, + 0.62374175, + -0.08132502, + -0.22721554, + 0.4471583, + -0.51848024, + 0.69487345, + 0.08193269, + -0.5959471, + 0.82512075, + 0.37399212, + -0.4122986, + 0.3709541, + 0.59104633, + -0.26228833, + -0.15789132, + 0.13319911, + -0.18717168, + -0.5580197, + -1.3270024, + -0.061014783, + 0.10295247, + -0.6488412, + -0.5247181, + 0.40249223, + 0.7034552, + 0.161921, + -0.4465979, + -0.25231922, + 1.0237045, + 0.76769423, + -0.039782755, + 0.1345142, + -0.110646114, + 0.808237, + 0.3578712, + -0.016908715, + 0.63694566, + -0.10237393, + 0.5100039, + -1.1320575, + -0.15405145, + 0.55621725, + 0.34114808, + 0.19462669, + -0.537485, + 0.007924255, + -0.27668393, + -0.48333675, + -0.18667546, + -0.030508062, + 0.5933113, + 0.03505519, + -0.23555303, + 1.0915833, + 0.655474, + 0.38349566, + 0.47142327, + 0.068409085, + -0.9420821, + -0.025948428, + 0.60271084, + 0.7015291, + -0.193768, + -0.6951846, + -0.41930506, + 0.051698502, + 0.43035975, + -0.89585525, + 0.5124298, + 0.36304015, + -0.011570685, + -0.7391132, + 0.08929592, + 0.4280096, + -0.23404665, + 0.79324025, + -0.10045307, + -0.57632047, + 0.32095897, + 0.71927845, + 0.3354652, + -0.021794502, + -0.5543609, + 0.5242351, + -0.03775347, + 0.07995963, + 0.012083363, + -0.23903735, + 0.2229585, + 1.0891969, + 0.495704, + -0.05498652, + -0.40807894, + 0.4144634, + 0.18687233, + -1.2180426, + -1.5505884, + 0.05171182, + -0.9760338, + -0.3037802, + 0.40043652, + -0.56378835, + -0.18162555, + 0.7487339, + 0.560404, + 0.11396188, + -0.7252657, + -0.31714815, + -0.43304414, + -0.081456356, + -0.06382024, + 0.02835361, + 0.06777045, + -0.070991576, + 0.5104266, + 0.7211153, + -0.9488608, + 0.21074845, + -0.47275192, + -0.11413671, + 0.38119623, + 0.34813884, + -0.29709485, + -0.4920573, + -0.042452518, + -0.4262495, + -0.55864996, + -0.17805405, + 0.55174017, + -0.06688657, + -0.12160823, + 0.61375433, + -0.18305051, + -0.50741416, + 0.17944479, + -0.51181185, + -0.053172447, + 0.17886919, + -0.01245746, + 0.0070878407, + 0.5851314, + -0.1356974, + -0.4999472, + -0.24755754, + 0.15359773, + 0.11994307, + 0.37006885, + -0.038463168, + -0.24159612, + 0.16281801, + -0.40004233, + -0.35415307, + 0.10222867, + -0.046205185, + -0.25784802, + 0.5614276, + -0.9645758, + -0.2809586, + 0.32078394, + -0.0749781, + 0.28580934, + 0.3338579, + -0.36147505, + -0.48729536, + -0.8086256, + 0.60817826, + 0.310529, + 0.4599108, + -0.07991015, + -0.702847, + 0.40568614, + -0.33161813, + -0.3716765, + 0.3647025, + 2.9748442, + -0.3952489, + 0.26261204, + 0.42334056, + -0.45267507, + 0.89111656, + 0.3661742, + 1.1172862, + 0.68772805, + 0.022004753, + -0.38454646, + 0.7646128, + 0.20917167, + 0.15355466, + -0.31120378, + 0.6396636, + 0.6201887, + -0.53555256, + -0.54368997, + -0.47423518, + -0.41210055, + -0.21904063, + 0.13756347, + -0.45177162, + -0.1152295, + 0.065203205, + 0.42022583, + 0.3145579, + 0.30657482, + 0.17632772, + -0.5554069, + 0.23075914, + 0.05452285, + -0.7468393, + -0.36198643, + 0.13968168, + -0.6627295, + 0.961686, + 0.8125547, + -0.9367206, + -0.70934045, + 0.050942384, + -0.32744753, + 0.33023253, + 0.20379153, + 0.3150789, + -0.22577809, + 0.09218831, + -0.80333424, + -0.2501386, + -0.067270204, + 0.26579538, + 0.15487751, + -0.21921924, + -0.48642048, + -0.32614827, + -0.36018318, + -0.016053572, + 0.027089199, + -0.28815073, + -0.8489457, + 1.0214415, + -0.46073967, + 0.74028146, + -0.2664925, + 0.066440955, + -0.58721673, + 0.3673155, + -0.39492494, + -0.27162844, + -0.35672665, + -0.85503256, + 0.05167231, + -0.6895161, + -0.24551593, + 0.6713097, + 0.24063185, + -0.5107864, + -0.046176463, + -0.95793366, + -0.3421333, + 0.08986901, + -0.11543996, + -0.4736241, + -0.38773024, + -0.14224201, + -0.86674744, + 0.5920319, + 0.23456553, + -0.52478987, + 0.33035666, + 0.1772874, + -0.56391424, + -0.60189813, + 0.97415394, + 0.32953393, + 0.3214268, + 0.08850762, + 0.39711213, + -0.3592718, + -0.13396376, + 0.38782662, + 0.4652648, + 0.7007868, + 0.042547155, + -1.1681812, + -0.24866045, + 0.7259105, + 0.3241511, + -0.41217786, + -0.32034034, + 0.46830353, + 1.1287615, + 0.28533265, + -0.36432672, + -0.31784132, + 0.22098413, + 0.24915783, + 0.09736562, + -0.37759212, + 0.19902971, + -0.22928101, + 0.28984165, + -0.0589881, + -0.4733395, + 0.46251458, + 0.0604925, + 0.5746146, + -0.53436404, + -0.025396012, + 0.18842962, + 0.41245246, + 0.16736762, + -0.26962253, + 0.4324962, + -0.011708945, + 0.016094461, + 0.12004466, + -0.6489511, + 0.34794846, + -0.41124472, + -0.06525555, + 1.3509516, + 0.62207395, + -0.77945566, + 0.19267808, + 0.14328575, + 0.030636221, + 0.3132994, + -0.013791084, + 0.022155397, + -0.31345662, + -0.45673, + 0.031116193, + 0.68300605, + 0.12988457, + -0.15736637, + 0.6000634, + 0.6133349, + -0.05278196, + 0.73255044, + -0.17993651, + 0.33283377, + 0.03373146, + -0.45094982, + 0.641531, + -0.3847131, + -0.43559074, + -0.31925493, + -0.41381937, + -0.5533699, + 0.096192464, + 0.77578247, + 0.12860928, + 0.44945496, + 0.09122195, + -0.09380193, + -0.3358431, + 0.26369882, + -0.65607053, + -0.89825696, + -0.650099, + 0.36242664, + 0.10415925, + 0.14594528, + 0.22300613, + 0.23180811, + -0.14569521, + 0.68448967, + 0.42268315, + 0.078757964, + 0.4448853, + 0.008709177, + 0.569099, + -0.50642884, + 0.14235762, + 0.2920045, + -0.51134986, + 0.6209765, + -0.24672975, + 0.066709794, + -1.0924749, + -0.5486658, + 0.29676545, + -0.3599721, + -0.15722497, + -0.9748293, + 0.50239354, + 0.015565846, + -0.027105467, + 0.015691485, + 0.28591728, + -0.92274284, + 0.48143965, + 0.28177106, + -0.2943125, + 0.15014766, + -0.61180305, + -0.039101087, + -0.17833117, + 0.75088453, + 0.22915001, + -0.2963603, + 0.10242849, + -0.49411133, + -0.1937643, + -0.4021331, + 0.020614218, + 0.63140815, + -0.43305993, + 0.011864632, + -0.87174606, + 0.484873, + -0.23944262, + -0.3549228, + 0.5324907, + -0.30308655, + 0.46543452, + -0.22732528, + 0.35132167, + 0.008710377, + -0.3136759, + 0.43014777, + -0.051051095, + 0.76077664, + 0.62521917, + 0.16714628, + 0.48087987, + 0.2246818, + -0.7936071, + 0.0459653, + -0.7359303, + 0.78833586, + 0.049424574, + -0.21980047, + -0.3089095, + 0.13170977, + 0.038841054, + 0.41230497, + 0.36062887, + -0.1145585, + 0.16325636, + -0.12505728, + -0.1027599, + -0.48383874, + 0.3963212, + 0.17195342, + 0.09592244, + 0.3929707, + -0.39715186, + -0.12428647, + 0.17337751, + 0.119276695, + -0.4683249, + 0.15361972, + -0.5753589, + 0.34529248, + -0.097810045, + -0.6680436, + 0.66909486, + 0.10926712, + -0.97443503, + -0.342826, + 0.054116175, + -0.2759097, + -0.5174533, + 0.8924746, + -0.34894788, + 0.3947755, + -0.59445584, + -0.20176253, + -0.61728907, + -1.3091, + 0.2585612, + -0.73047286, + -0.5874695, + 0.074085504, + -0.3090415, + -0.6725921, + -1.0440544, + 0.2873598, + 0.08764071, + 0.3206541, + -0.44613323, + -0.20739298, + 0.10964403, + -0.697805, + -0.7796806, + -0.14790092, + -0.18104888, + -0.2291569, + 0.7097527, + 0.13551697, + 0.851728, + -0.13847868, + -0.07061918, + -0.4193964, + 0.95484537, + -0.21221814, + 0.011289155, + 0.1803058, + 0.28578898, + -0.80952036, + -0.21634088, + 0.90400267, + -0.17104661, + 0.23758747, + 0.46350628, + 0.5848975, + -0.21193385, + -0.15693156, + 0.026802719, + 0.19359723, + -0.040054247, + -0.42420766, + 0.39270288, + 1.307982, + -0.3987843, + 0.22856864, + -0.44749528, + -0.3881203, + -0.43358377, + -0.26132634, + -0.29939568, + -0.067048274, + -0.12927583, + -0.26515996, + -0.8381115, + 0.47909904, + -0.5386146, + 0.58183104, + 0.3897009, + 0.598483, + -0.07220416, + 0.33939022, + -0.25580555, + 0.19725116, + 0.016985238, + -0.1296375, + 0.14856109, + -0.44223762, + 0.611186, + -0.19788206, + 0.37489748, + 0.084126435, + -0.34518945, + -0.1374282, + -0.07375781, + 0.51201534, + 0.073045865, + -0.49421883, + 0.51000375, + 0.2737147, + 0.39289826, + -0.34019494, + -0.23481093, + 0.67178476, + -0.45534083, + 0.19094063, + -0.8995307, + 0.3843858, + 0.38688645, + 0.4037984, + -0.46339068, + -0.3825287, + -0.49469346, + 0.38527587, + 0.23637354, + -0.14438775, + 0.036242127, + -0.093154475, + 0.8836606, + -0.0637092, + -0.43310446, + 0.17801932, + 0.47701663, + 0.60717607, + 0.5189556, + -0.4514712, + 0.6009542, + -0.29310188, + -0.35960847, + -0.27920756, + 0.23385379, + -0.92356706, + -0.6466476, + 0.3324164, + -0.28032663, + -0.04019742, + -0.020887464, + -1.0292075, + -0.3835297, + -0.13331628, + -0.7088312, + 0.7208476, + -0.42078915, + -0.2493612, + -0.46179068, + -0.051152803, + -0.31644797, + -0.080282375, + -0.22929963, + -0.16281244, + -0.46866104, + -0.1321785, + 1.0024394, + -0.28339994, + -0.3735832, + 0.8519941, + 0.23260778, + -0.82505894, + -0.46541128, + 0.66474533, + -0.16400987, + 0.29997143, + -0.13171951, + -0.26965028, + 0.33354992, + -0.04265515, + 0.96792483, + 0.76995426, + -0.69729507, + 0.58111703, + 0.44939312, + -0.4704368, + 0.38059378, + -0.33354205, + 0.61085296, + 0.29436415, + 0.12305767, + 0.38652512, + -0.10922244, + 0.062766165, + 0.06799759, + 0.12592886, + -0.26188043, + -0.31828177, + 0.39112756, + -0.55186516, + -0.12180965, + -0.06802901, + 0.28951266, + 0.27036425, + -0.9669522, + 0.6625137, + 0.20368731, + -0.37509423, + -0.021149363, + -0.2971702, + 0.5526779, + 0.25374824, + 0.019802798, + -0.040675845, + 0.54867506, + 0.8655258, + -0.14293423, + 0.29068395, + 0.6769576, + -0.13677745, + 0.6236632, + -0.043670997, + -0.6485172, + -0.021546904, + -0.25874525, + -0.03280656, + -0.121491894, + 0.38293704, + 0.3779335, + -0.24313456, + -0.21501529, + 0.11329203, + 0.65238136, + -0.2856292, + 0.15647511, + -0.1809639, + -0.2797465, + -0.8547367, + -0.055287696, + 0.26669544, + -0.022467948, + 0.8581355, + 0.093276985, + 0.14246891, + 0.60269, + -0.104020976, + 0.11488925, + 0.032005064, + 0.020657439, + -0.60100466, + 0.03545648, + -0.28662422, + 0.23987952, + 0.24069323, + 0.16043596, + -0.68467116, + 0.63753927, + -0.75376314, + -1.1014379, + 0.3375987, + -0.013411105, + -0.31256872, + 0.29845965, + -0.48849514, + 1.0542948, + 0.1496247, + 0.39092487, + -0.5852823, + 0.7159354, + 0.08468971, + 0.20776066, + -0.57671046, + 0.2605152, + -0.12820251, + 0.8325643, + 0.773895, + 0.11866139, + 0.74138397, + -0.15446594, + 0.33087897, + -0.43027177, + -0.27942532, + 0.252689, + 0.34797257, + 0.5278196, + 0.4883642, + 0.031034244, + -0.007301796, + 0.3851166, + -1.0562998, + -0.23921312, + 1.04016, + -0.7367329, + 0.17804533, + -0.2892001, + 0.5493073, + -0.1645969, + 0.44890723, + 1.42288, + -0.09745307, + -0.13900265, + 0.008992406, + 0.18498786, + -0.016569696, + 0.08389994, + -0.14019741, + 0.1980698, + -0.40118137, + -0.09295742, + 0.17849806, + -0.26338124, + -0.1909554, + 0.84586924, + -0.28328428, + 0.18615334, + 0.04405523, + 0.13021876, + -0.3959357, + -0.88527656, + -0.92220426, + -0.34500936, + -0.21988879, + 0.2536168, + -0.148683, + -0.16075149, + 0.25405475, + 0.5630338, + -0.13210224, + 0.26050103, + 0.8977553, + 0.23955931, + -0.24413103, + 0.14234196, + -0.059094958, + -0.18468696, + -0.37251732, + 0.35191485, + -0.35825267, + 0.009886274, + 0.033352032, + 0.10113228, + 0.55047226, + 0.047114067, + 0.2880586, + -0.72169244, + 0.40345216, + -0.34424016, + -0.9128772, + 0.4157027, + 0.17844501, + -0.3075044, + 1.0709951, + 0.55589753, + -0.27527204, + -0.62813944, + 0.022546098, + -0.15256676, + -0.011338351, + -0.15673074, + -0.001514338, + -0.1812315, + -0.6439006, + 0.20228201, + 0.2671375, + -0.14226034, + -0.08620628, + -0.8838006, + 0.37091896, + -0.84899914, + -0.51137, + -1.3155996, + 0.2691452, + 0.32346132, + -0.48001495, + -0.3687028, + -0.13638173, + -0.2977149, + 0.09158025, + 0.111911945 + ], + "2025-05-20T11:43:30.183557", + "2025-05-20T11:43:30.183557", + 11.9254703522, + -15.3311862946, + -4.2079267502, + "6", + "ID: 10192364
Cluster: 6
Chunk: ige Optimierung in N Dimensionen\n7.1 Parameterscan\nMin f(x), x in RN\nin Hypercube x \u2264 x \u2264 x und x - x = L.\nlow up up low\nEinfache Absch\u00e4tzung: Wir unterteilen jede Design-Variable in M = L\/T \u00e4quidista..." + ], + [ + 11723, + "prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.\n\nx2 + y2 \u2013 1 = 0,\nx \u2013 sin(t) = 0,\ny \u2013 sin(2t + \u03c0\/4) = 0\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-Algorithmus.\n\nz.B. nur f\u00fcr x>0, da symmetrisch:\n(x ,y , t ) = [0.7, 0.75, arcsin(0.7) ]\n0 0 0\n[0.25, 1, arcsin(0.25) ]\n[1, -0.25, arcsin(1) ]\n[0.7, -0.75, arcsin(0.7) ]\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3 Design-\nVariablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit den Startwerten\nvon (b)\nHier reicht es alle Schnittpunkte mit x > 0 zu bestimmen, da beide Kurven achsensymmetrisch sind.\n\nStartwert [0.7, 0.75, arcsin(0.7) ] \uf0e0 L\u00f6sung [0.70674446 0.7078306 0.78488616]\nStartwert [0.25, 1, arcsin(0.25) ] \uf0e0 L\u00f6sung [0.26014633 0.96664301 0.2631811 ]\nStartwert [1, -0.25, arcsin(1) ] \uf0e0 L\u00f6sung [1, -0.25, arcsin(1) ]\nStartwert [0.6, -0.85, np.arcsin(0.6)] \uf0e0 L\u00f6sung [0.70732644 0.70666723 0.78570889], hier musste\nder Startwert noch variiert\/probiert werden, bis die Konvergenz auf den gesuchten Schnittpunkt erreicht\nwurde.\n\n51\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung.\n\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems.\n\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus.\n\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\nL\u00f6sung (-0.5; 0.25)\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .", + 18240, + 4960559, + null, + "md", + null, + [ + 0.3179646, + -0.103203535, + -0.03015862, + -0.33203667, + 0.21279645, + 0.25659063, + 0.264594, + 0.5064091, + -0.5108686, + 0.1827112, + -0.2057376, + 0.41959545, + 0.16683517, + 0.05212103, + 0.4227515, + 0.40559927, + 0.49333963, + -0.033038758, + 0.5204243, + -0.29663774, + -0.56361336, + 0.06465066, + 0.3913966, + 0.48964748, + -0.6096554, + 0.39608756, + -0.13872966, + 0.1466504, + 0.10674975, + 1.1831636, + -0.17645934, + -0.07092726, + -0.3881887, + -0.3163711, + -0.27526757, + -0.6076026, + 0.8258395, + 0.20650324, + -0.659403, + -0.299567, + -0.42918032, + 1.034678, + 0.58659273, + -0.05486596, + -0.8073823, + 0.42847615, + 0.059895966, + -0.8434884, + -0.012350749, + -0.9390505, + -0.5265102, + 0.49774885, + 0.21056643, + 0.4486518, + 1.0570403, + -0.31846648, + -1.1891799, + 0.20063733, + 0.29752445, + -0.23782356, + -0.029075136, + 0.1304894, + 0.029878959, + 0.28391412, + 0.36735412, + -0.4083468, + 0.98556453, + 0.11212183, + 1.3803494, + -0.33012542, + -1.0097363, + 1.0618006, + 0.74522233, + -0.47806334, + -0.35564494, + 0.8881023, + 0.5328013, + 0.16532242, + 0.09286481, + 0.38159826, + 0.22184847, + -0.42269397, + -0.65226895, + -0.57150114, + -0.14183772, + -0.29612067, + 0.21912804, + 0.99256325, + -0.68894416, + -0.3783333, + -0.67143995, + 0.241732, + 0.0910079, + -0.003905559, + -0.062509365, + -0.9355172, + 0.246611, + -0.7060341, + 0.17382374, + 0.40318158, + -0.3884492, + 0.8578195, + 0.48120752, + -0.33331436, + -0.3087037, + -0.30196667, + -0.09375683, + 0.700844, + -0.34690237, + 0.20593575, + 0.7350019, + -0.2744343, + -0.63781977, + -0.2781452, + -0.33611503, + -0.8714574, + -0.26948762, + 0.5923756, + -0.022124298, + 0.64965963, + -0.65460634, + 0.5799716, + 0.30378082, + 0.09496207, + 0.2005457, + 0.2637317, + 0.4786765, + 0.34106645, + 0.7779038, + -0.28749013, + 0.4967352, + -0.12119448, + -0.45425233, + -0.2763047, + 0.13343339, + 0.21064195, + -0.16060331, + -0.04723143, + -0.37736693, + -0.41682112, + 0.0013151169, + -1.0787084, + -0.15283218, + -0.77552617, + 1.1649085, + 0.26213062, + -0.10206656, + -0.3481243, + 0.022040572, + -0.0014186613, + -0.5297382, + 0.04701516, + 0.26367578, + 0.20073523, + -0.26572463, + 0.25030568, + 0.09952585, + 0.24828044, + 0.26485074, + -0.39937988, + 0.5686809, + 0.12064321, + 0.16056605, + -0.46170872, + 0.8905975, + -0.26644367, + -1.090288, + 0.35777533, + 0.47124922, + -0.5568535, + 0.068260625, + -0.42058724, + -0.45270944, + 0.47526357, + -0.47125173, + 0.3821553, + 0.17854322, + 0.10391203, + -0.3122939, + -0.33499587, + 0.6497647, + 0.12115388, + -0.36106363, + -0.81619304, + 0.5968232, + -0.06543198, + 0.7112051, + -0.11774708, + 0.23259439, + 0.31871048, + 0.14806409, + 0.20857567, + 0.6626608, + -0.27898014, + 0.19106042, + 0.29249823, + -0.38687858, + -0.022606177, + -0.27145344, + -0.013560202, + 0.18952073, + 0.12144117, + -0.044424, + -0.3487328, + -0.15383571, + -0.2964693, + -0.32467073, + 0.23808849, + -0.42140925, + 0.25050563, + 0.55444705, + -0.4339773, + -0.45882767, + 0.47328132, + 0.17985092, + 0.5771203, + 0.039823387, + -0.78794384, + -0.47582692, + 1.0969408, + 0.3912246, + -0.3394388, + 0.35843316, + -0.12538925, + 0.40949932, + 0.36337683, + 0.1231149, + 0.49759576, + -0.03165455, + -0.23518555, + -0.7567927, + -0.0017741285, + -0.2637051, + -0.6172975, + -0.37138402, + -0.23855875, + -0.124398276, + 0.5134386, + 0.020063302, + -0.28884807, + 1.3712112, + -0.04976902, + -0.33117688, + 0.02930113, + 1.3072406, + 0.022287423, + -1.1908557, + 0.38531473, + -0.23009203, + 0.15636864, + 0.23339988, + -0.23249346, + -0.6087692, + 0.21010998, + 1.297247, + -0.16497652, + 0.012391259, + 0.009655807, + 0.13246092, + 0.36038598, + -0.25973785, + -0.35484746, + -0.38913283, + -0.0062422156, + -0.8542563, + 0.29494977, + 0.112311654, + 0.48722833, + 0.4665359, + -0.3835098, + 0.51445, + -0.028277062, + -0.36348417, + 0.61028486, + -0.24931172, + 0.57688046, + -0.23655275, + 0.7076859, + 0.56621677, + -0.7501217, + 0.23353426, + -0.3419531, + 0.15671787, + -0.32813695, + -0.102636784, + 0.71063894, + -1.0974811, + 0.08048005, + 0.5556505, + -0.5370333, + -0.12106757, + -0.5666193, + 1.4743439, + -0.081616305, + -0.6485317, + 0.116181806, + -0.7739463, + 0.07550931, + -0.6740064, + -0.5236249, + 0.41579852, + -0.3183279, + -0.43345645, + 0.11420259, + -0.32249475, + -0.050178535, + -0.09199941, + -0.26114702, + -1.365145, + -0.005558504, + -0.6385124, + -0.578983, + 1.0255724, + -0.2156635, + 0.19190365, + -0.2769707, + 0.3146405, + -1.0503782, + -0.19056909, + 0.35829684, + 0.8140154, + -0.2086799, + -0.18071207, + 0.26598462, + -0.064783245, + 0.19276954, + 0.2718251, + -0.33522215, + -0.09172768, + 0.52675635, + -0.8098238, + -0.54116803, + 0.25861534, + 0.60239285, + -0.4315255, + 0.24963489, + -0.6406656, + 0.7292226, + -0.6255161, + 0.4357397, + -0.43209037, + -0.039514437, + 0.35857353, + 0.7896368, + -0.6932665, + -1.0898719, + 0.5042019, + -0.52351695, + 0.73398495, + -0.058132306, + 0.8052545, + 0.16831118, + -0.8797989, + 0.015593909, + 0.2055605, + 0.11255176, + 0.53884244, + -0.024151467, + 0.07915458, + 0.1477757, + 0.035457566, + -0.5403893, + 0.071278855, + -0.05883587, + -0.55295, + 0.008974977, + -0.11543683, + 1.3483471, + -0.7058789, + -0.03482712, + 0.03875401, + 0.04321973, + 0.053749062, + -1.1251963, + -0.119662166, + -0.85628474, + -0.31397253, + -0.68580264, + 0.11569043, + 0.61530775, + -0.6324934, + -0.5979457, + -0.16618313, + -0.10302602, + -0.60011697, + -0.65335536, + 2.2805245, + -0.26942825, + 0.8736844, + 0.064001344, + -0.48391694, + -0.02215404, + -0.28375655, + 0.47275215, + -1.3100657, + 0.09487824, + -0.1540473, + -0.1786088, + 0.7666711, + -0.07021061, + -0.2967147, + 0.4737062, + 0.17666961, + 0.39956897, + -0.24559094, + 0.682262, + -0.05535302, + -0.025606006, + 0.12066747, + 0.5311623, + 0.5673748, + 0.3572922, + -0.067543544, + -0.43317324, + 0.39779204, + -0.6376087, + 0.43887135, + -0.06466002, + -0.06297163, + 0.66705, + 0.04713373, + 0.93229157, + -0.22434928, + -0.5482013, + 0.20611274, + -0.118103564, + 0.49557516, + -0.18139958, + 0.35113364, + 0.11865379, + 0.51240504, + -0.6445605, + 0.4402714, + 0.16231334, + -0.21681719, + -0.24679574, + 0.0065548196, + -0.036066525, + -0.6303757, + -1.5498528, + 0.27970043, + -0.78256774, + -0.35555935, + -1.3005219, + 0.06166306, + -0.2916041, + 0.50801545, + 1.0744617, + 0.41488403, + 0.78117543, + -0.32775888, + 0.25744647, + -0.20832494, + 0.38385865, + -1.0360343, + 0.7856589, + -0.33935744, + -0.30955422, + 0.6104281, + 0.76684904, + 0.18497123, + 0.44177458, + 0.21676141, + -0.23577617, + -0.38612807, + -0.53648335, + -0.28673565, + -0.12533933, + -0.5718161, + -0.49745345, + 0.09307541, + 0.19101778, + 0.122034654, + -0.35468525, + 0.3468625, + -0.017231677, + 0.56455064, + 0.18270478, + 0.36557847, + 1.226125, + -0.43200317, + -0.3123635, + 0.5351712, + 0.17957105, + -0.099606976, + 0.7499286, + 0.82020366, + -0.0795578, + -0.226941, + 0.3567391, + -0.2259046, + -0.42008, + 0.04781284, + 0.52774453, + 0.88093764, + -0.06506628, + -0.8113955, + -0.12883946, + 0.8819187, + 0.89745456, + 0.06228158, + -0.78600454, + 0.12822285, + -0.09880047, + -0.12746984, + -0.5315075, + -0.231522, + -0.23135549, + -0.62991774, + 0.48748082, + 1.0023079, + 0.073702514, + 0.040346183, + 0.5862807, + 0.52398586, + 0.4861188, + 0.1721721, + -0.04072024, + 0.3549862, + -0.40317348, + -0.02951917, + 0.97357225, + -0.13453482, + 0.1689667, + 0.7754584, + -0.091631755, + -0.15747294, + -0.29863954, + 0.36682436, + 0.0066728294, + -0.47077885, + -0.2882183, + 0.08037635, + -0.72415924, + -0.30380076, + 0.310589, + -0.5356941, + 0.95568657, + -0.8017017, + -0.5559288, + 0.24698572, + 0.022249997, + 0.25928813, + -0.39828953, + -0.32568616, + -0.54128194, + 0.6852619, + 0.1445916, + -0.07527183, + -0.16780429, + -0.547034, + 0.59706795, + 0.6186024, + -0.07692017, + -0.0287631, + -0.32358855, + -0.08211478, + -0.083204895, + -0.17263949, + 0.15117969, + 0.608192, + -0.33741945, + 0.41032308, + -0.48596123, + 1.3126942, + -0.14117824, + -0.9462994, + -0.2534827, + 0.13726845, + -0.10096637, + -0.15770826, + 0.67544943, + -0.23844174, + 0.04910421, + -0.072647795, + -0.887709, + -0.33016372, + -0.031903103, + 0.19518289, + -0.10144632, + -0.62824845, + -0.11209639, + -0.02745635, + -0.31324166, + 0.2655987, + -0.086929776, + 0.24200217, + -0.97304773, + -0.04357164, + -0.3584577, + -0.11586818, + -0.28164983, + -1.1840141, + 0.21540655, + 0.17574319, + -0.34534484, + 0.1617531, + -0.5598222, + -0.2452085, + 0.16140741, + -0.41080138, + -0.32222012, + 0.03200359, + -0.49135184, + -0.5684677, + -0.90185505, + 0.26967022, + 0.56196576, + -0.11209853, + 0.2327277, + -0.18117191, + 0.2940191, + 0.5164878, + -0.17242557, + 0.10977529, + 0.060887974, + -0.078232095, + 0.7060599, + 0.48885465, + -1.3068123, + -0.35796496, + 0.20827678, + 0.14612392, + -0.35563132, + 1.1871852, + 0.27742037, + 0.17754018, + 0.2745219, + 0.65047604, + 0.13528365, + 0.0002168119, + -0.60352176, + -0.3901071, + -0.4815438, + 0.1892628, + -0.6246624, + -0.60937595, + -0.99289024, + 0.26781243, + 0.29689363, + 0.50128645, + 0.19925076, + 0.37187165, + 0.6156616, + -1.2260058, + 0.8190786, + 0.42233503, + 0.1264164, + -0.6630816, + 0.3427414, + -0.09521525, + 0.54052335, + -0.97958773, + -0.55477154, + 0.016809987, + 0.67670417, + 0.33431083, + 0.25518507, + 0.50097656, + -0.77782774, + -0.41374004, + -0.64041847, + -0.77154076, + 0.4074075, + 0.24232146, + 1.2260362, + 0.44215244, + -0.68388116, + 0.9677403, + -0.2669065, + -0.38606408, + 0.115285695, + 0.5568783, + -0.9808247, + 0.31515467, + 0.49426687, + 0.5402848, + 0.21924418, + 0.15334263, + -0.052357484, + 0.15337157, + -0.3278485, + -0.25846437, + -0.37101465, + -0.65097785, + 0.16944954, + -0.0015488118, + -0.45637187, + -0.97677743, + 0.31963325, + -0.31221384, + 0.23197512, + -0.69087017, + -0.59224117, + 0.6918758, + 0.3179198, + 0.055387188, + 0.7890175, + -1.1856422, + 0.7043253, + -0.19009817, + 0.54552674, + -0.18779051, + 0.90710205, + -0.50056267, + -0.8349579, + 0.20583802, + 0.2870361, + 0.2519976, + -0.66589755, + 0.124282375, + 0.35435632, + -0.47000822, + 0.13229026, + 0.26460597, + -0.100792654, + -0.39932036, + -0.09810575, + -0.22627285, + -0.35654783, + -0.19350061, + -0.1452652, + 0.12595765, + -0.5947708, + 0.03101572, + -0.523203, + 0.66362655, + 0.117537834, + 0.57657015, + -0.41302377, + -0.3932747, + 0.65216523, + 0.144657, + 0.31449473, + -0.12557416, + -0.78503686, + 0.30687666, + 0.30233848, + -0.47847667, + 0.29186136, + 0.543644, + -0.3495535, + 0.8736577, + -0.41167545, + -0.2259165, + -0.19873704, + 0.5585314, + -0.010376312, + 0.35106608, + 1.2410442, + -0.019262962, + -0.38912743, + 0.24180833, + 0.2461057, + 0.694913, + 0.04561298, + 0.46209463, + 0.10659326, + 0.23313323, + -0.49761343, + -0.7434121, + -0.12928715, + -0.7384819, + -0.8007435, + 0.29890174, + -0.90965974, + 0.11711198, + -0.02236507, + -0.476417, + -0.05973413, + -0.56339836, + -0.6529189, + -0.107363924, + 0.09931348, + 0.20704642, + 0.8873016, + -0.40292147, + -0.8594535, + 0.7187517, + -0.29139504, + 0.29953164, + 0.16235283, + -0.5468975, + 0.77724355, + -0.14892724, + -0.08074344, + 0.18070138, + 0.3522809, + 0.6412653, + -0.09592922, + -0.15358548, + -0.9975472, + -0.3090897, + 0.3767568, + 0.011570105, + 0.9239178, + -0.35992116, + -0.41825208, + -0.6147684, + -0.010710046, + 0.4541393, + -0.65657395, + -0.45886415, + -1.0839953, + -0.04637891, + -0.4446988, + 0.06691493, + -0.07193269, + 0.22899339, + 0.43784747, + -0.41034693, + 0.2598918, + -0.3318359, + -0.050114248, + 0.13831273, + 0.3970047, + 0.11372311, + -0.42512754, + -0.6346778, + -0.27388495, + 0.6020913, + -0.07446274, + -0.63867414, + 0.5722754, + -0.1798833, + -0.6319374, + 0.41297776, + 0.082904205, + 0.3042705, + -0.7483652, + 0.012291901, + 0.067568466, + 0.038615942, + -0.16468464, + 0.8277733, + -1.1031197, + 0.6517269, + 0.26826632, + -1.1953756, + -0.38717026, + -0.7489306, + 0.118099034, + 0.81632817, + 0.059993412, + 0.016315714, + 0.11144551, + -0.27993077, + -0.059355866, + -0.11051611, + -0.78951234, + -0.009395748, + 0.32249713, + 0.22671892, + -0.06860761, + -0.10996424, + 0.42432088, + -0.23529962, + 0.06109819, + 0.22412646, + 0.7106284, + 0.61305374, + 0.25996548, + 0.118355125, + -0.18939658, + 0.77194923, + -0.7481391, + -0.24462447, + 0.4912005, + -0.80482894, + -0.6711386, + -0.057118207, + 0.107364684, + 0.13967624, + -0.8033048, + 0.022480786, + -0.6756127, + -0.106953405, + 0.7683832, + 0.016400658, + -0.40793452, + 1.0159602, + 0.2284835, + -0.690624, + -0.6397171, + 0.45786136, + 0.14520982, + 0.13885698, + 0.20024082, + -0.09243501, + 0.9948861, + -0.45961666, + 0.06781551, + 0.58979774, + -0.304316, + -0.36438227, + 0.48808685, + -0.24383065, + -0.119916625, + 0.25262028, + -0.48482487, + -0.24130933, + 0.016952671, + 0.14700608, + -0.14967835, + 0.3475912, + 0.46034428, + -0.3626119, + 0.7132292, + 0.45547733, + 0.39658883, + 0.20629752, + 0.41274184, + 0.27197057, + 0.16509025, + 0.17670056, + 0.5178406, + -0.21935697, + 0.21842138, + -0.2710794, + 0.60031503, + 0.476497, + 0.27246734, + 0.35829365, + -0.8146932, + -0.49958944, + -0.5697277, + -0.5169735, + 0.26255387, + -0.46847337, + 0.5450765, + -0.36735708, + -0.4778977, + -0.31163576, + 0.21589628, + 0.116946444, + -0.10659495, + -0.17790103, + 0.06973756, + -0.90789807, + -0.18644339, + -0.010593556, + -0.012844044, + -0.28524238, + 0.27746853, + -0.45538363, + -0.056364805, + -0.22466937, + 0.34158593, + 0.3384039, + -0.5397978, + 0.27366617, + 0.4586963, + -0.35547325, + 0.57763946, + 0.1547179, + -0.86728007, + 0.27344233, + -0.5392305, + 0.12509203, + 0.13663076, + -0.46614972, + -0.3805331, + -0.15324268, + -0.38305783, + -0.15063962, + -0.059647035, + 0.2326165, + -0.10650018, + -0.0039651454, + 0.5398262, + 1.2550673, + 0.17140712, + 0.15471512, + 0.17832921, + -0.72719204, + -0.094155945, + 0.19315894, + -0.41575933, + -0.16952446, + -0.11600629, + -0.03419737, + -0.44515723, + -0.006330304, + 0.14522699, + 0.34305435, + -0.38617256, + -0.50974035, + 0.081011586, + -0.24193564, + -0.052198, + 0.28096294, + -0.35544664, + 0.14462799, + 0.05817336, + 0.5073191, + 0.21465582, + 1.0986232, + -0.025793368, + -1.052786, + 0.6898306, + 0.64347494, + -0.034119353, + 0.20878394, + -0.61910474, + 0.27643707, + -1.2383344, + 0.592768, + -0.5888715, + 0.5749514, + 0.59024644, + 0.2168188, + 0.06506534, + 0.73779243, + -0.290604, + 0.042115547, + 0.27325913, + 0.5592674, + 0.6684436, + 0.20334335, + 0.432467, + 0.22544955, + 0.7469736, + 0.031726286, + 0.35435492 + ], + "2025-05-20T11:43:39.014296", + "2025-05-20T11:43:39.014296", + -47.8755645752, + 122.5512313843, + -46.6768035889, + "7", + "ID: 4960559
Cluster: 7
Chunk: prung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nic..." + ], + [ + 11725, + "die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\ngradf = (3x 2 \u2013 4, 2x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -1, 2 5\nn = 1 2,-1 8,-2 68\nn = 2 -6,1 104,2 10\u2019820\n(c) a=0.1: Iteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -0.1, 0.2 0.05\nn = 1 1.1,0.8 -0.037, 0.16 0.027\nn = 2 1.137,0,64 -0.01, 0.128 0.017\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1) .\n\n1,0 , 2,0\ngradf = (30x 2 \u2013 40, 20x )\n1 2\nIteration x x gradf |gradf |2\n1,n 2,n n n\nn = 0 1, 1 -10, 20 500\nn = 1 11, -19 3590,-380 13\u2019032\u2019500\nn = 2 -3579, 3611 384277190, 7220 1.5e17\n55", + 18240, + 4629789, + null, + "md", + null, + [ + 0.035227485, + 0.43120527, + 0.52239215, + -0.13663736, + -0.31758854, + 0.29873326, + -0.29649162, + -0.5112855, + -0.15712917, + -0.4734825, + 0.1259042, + 0.08540109, + 0.3401257, + -0.40163463, + 0.83632165, + 0.2960099, + -0.5661757, + 0.77227396, + 0.12360928, + -0.86863804, + -0.04766032, + -0.29687282, + 0.7867298, + 0.37844926, + -0.37913114, + -0.14191093, + -0.10414994, + -0.0042673647, + 0.09452772, + -0.01963433, + -0.2262731, + 0.41314828, + -0.5426892, + -0.82731766, + 0.31833154, + -0.056809902, + 1.0170922, + 0.16727799, + 0.12341689, + 1.1641692, + -0.5483145, + 0.5661739, + 0.44714043, + -0.09855313, + 0.9515027, + 0.2780046, + -0.33897194, + -0.8765168, + -0.16424131, + -0.44698256, + 0.18091345, + 0.5797814, + 0.4765207, + 0.23994556, + 0.5589339, + -0.8995157, + 0.42970592, + 0.19083676, + 0.30122584, + -0.0084908735, + 0.2271487, + 0.60508436, + -0.5885565, + 0.12091863, + 0.522537, + -0.2400003, + 0.2593043, + -0.28657794, + 0.2016936, + 0.1558629, + -1.0604045, + 0.2714879, + 0.658165, + 0.30373248, + -0.11965367, + 0.24967445, + 0.0023111403, + -0.21487568, + -0.720264, + 0.26807547, + -0.3657173, + 0.059623618, + -0.319422, + -0.28238973, + 0.25431567, + 0.37349644, + 0.16231835, + 0.20085457, + 0.36130702, + -0.4669555, + -0.011541992, + 0.2428661, + -0.13633785, + 0.3010863, + -0.54505575, + -0.6538167, + -0.5882407, + -0.5839243, + -0.48536655, + 0.18463476, + -0.27275962, + 0.4702417, + 0.39573306, + -0.21565984, + -0.48398867, + -0.3867579, + -0.07014859, + 0.39496505, + -0.11394868, + 0.9602792, + 1.525674, + -0.015809106, + 0.2727615, + 0.12185989, + 0.188926, + -0.45364374, + 0.30688545, + 0.22666086, + -0.3327866, + -0.54607743, + 1.1045344, + -1.63131, + 1.0533394, + -0.01845837, + 0.35336986, + 0.50757164, + 0.8207295, + -0.026832122, + 0.1515329, + 0.8613791, + 0.045546185, + 0.11808446, + 0.6049832, + -0.013299204, + -0.16695914, + -0.2041381, + 0.11554308, + 0.8998783, + -0.09762573, + -0.6887736, + -0.651439, + -0.7301151, + -0.08139841, + -0.24855262, + 0.4942112, + -0.5063123, + -0.33753967, + -0.19405794, + 0.12723875, + 0.21742342, + 0.20283914, + 0.21461979, + 0.63907933, + 0.7470671, + 0.31549773, + 0.6041687, + -0.12604114, + 0.46686167, + -0.36920264, + 0.20828255, + -0.71072066, + 0.37770894, + -0.43569168, + -0.4696259, + -0.0002884772, + 0.86632794, + -0.1098367, + -0.27356106, + 0.7677609, + -2.039423, + 0.7510078, + -0.10637742, + -0.70602727, + -0.5075672, + -0.33394322, + 0.4957729, + 0.36586857, + -0.23783559, + 0.15762946, + 0.15352885, + 0.5021717, + 0.90963167, + 0.42142627, + -0.38688138, + 0.35238108, + 0.2751043, + 0.10191421, + 0.0042552575, + 0.049110144, + 0.3200574, + -0.82587683, + -0.51401, + -0.21321319, + -0.056421444, + 0.4624979, + -0.76471865, + -0.19947533, + -0.057007495, + -0.40732443, + 0.110031664, + 0.7238411, + 0.15247838, + 0.49675307, + -0.5793193, + -0.11268348, + 0.3219213, + -0.052244537, + -0.283055, + 0.761901, + -0.24347527, + 0.85326636, + 0.103682384, + 0.7662685, + 0.45522246, + -0.402625, + 0.3245895, + 0.04530649, + 0.9966359, + -0.5977676, + -0.84382594, + -0.12858164, + 0.22183448, + 0.055392537, + -0.45959252, + -0.22699884, + 0.22088419, + -0.84075963, + 0.84792316, + 0.25188574, + 0.21962786, + -1.4087516, + -0.2749581, + -0.3968765, + -0.40764, + -0.572621, + 0.3130048, + 0.6636314, + 0.15228355, + -0.55669934, + 0.007022081, + 0.5633618, + -0.9288915, + 0.78622526, + -0.18130966, + 0.41737992, + -0.13846365, + -0.111729726, + 0.6047288, + 0.23378691, + 0.31664658, + 0.9489537, + -0.461172, + -0.27206695, + 0.45173162, + 0.48066688, + 0.10924919, + 0.35946625, + -0.3943067, + -0.7258749, + -0.12708573, + 0.020771712, + 0.2535193, + 0.16891477, + -0.13719198, + -0.032196134, + 0.16568378, + 0.16247398, + -0.0010640193, + -0.18431354, + -0.23212811, + 0.23384413, + 0.4116839, + 0.20506257, + 0.17645848, + -0.19683361, + 0.40574425, + -0.11653183, + -0.32934743, + 0.22995192, + -0.64957047, + 0.63135844, + -0.0354736, + -0.297599, + -0.19807786, + 0.41436026, + -0.0026962124, + -0.3644193, + 0.21282655, + 0.3815832, + -0.43197426, + -0.22535925, + -0.16352919, + 0.2260164, + -0.23978303, + 0.09813753, + -0.21887031, + 0.0124518275, + -0.02479434, + 0.36484334, + -0.30614692, + 0.47383517, + -0.074305594, + 0.64162344, + -0.48429582, + 0.23084599, + -0.17025676, + 0.3183928, + -0.27682674, + -0.032342233, + 0.2871809, + -0.12180154, + -0.22941951, + 0.07042329, + -0.5289044, + -0.06341804, + -0.39083895, + 0.10383343, + -0.16820128, + -0.06726672, + 0.7922198, + 0.27378166, + 0.7214276, + -0.0867618, + -0.51426053, + 0.07959388, + -0.054650407, + 0.4839524, + -0.6344546, + -0.37320217, + -0.05446639, + 0.09720878, + -0.026777014, + 0.6952187, + 0.02859007, + -0.013296358, + 0.2527567, + -0.51539916, + 0.4130947, + -0.32347235, + -0.12590106, + 0.34275198, + -0.085946225, + -0.24895418, + 0.5046025, + -0.10522412, + -0.03700988, + 0.7916052, + -0.39988512, + 0.13142252, + 0.23594326, + -0.39860323, + 0.2011841, + 0.40382236, + 0.030361295, + 0.46637934, + -0.056896657, + 0.5328057, + -0.12833251, + -0.0642562, + -0.09188379, + 0.03354928, + 0.09755744, + 0.39249888, + -0.3910788, + -0.4820851, + 0.17704615, + -0.07618969, + 0.4056756, + -0.4949583, + 0.41383332, + -0.20570967, + 0.09886987, + -0.16988349, + -0.17578858, + -0.62433785, + -0.14272404, + -0.23742738, + 0.7067068, + 0.08055101, + 0.028926035, + -0.22104391, + 0.087547965, + 0.4578066, + -0.16460729, + 0.14203726, + 0.066070706, + 0.19873983, + -0.97487146, + 0.1334939, + 0.49761176, + -0.5894046, + -0.12641427, + 0.28989482, + 0.048131824, + 0.3156877, + 0.20787624, + 0.3709583, + 0.14004359, + 0.40923533, + -0.30218974, + 0.23594126, + 0.1278511, + -0.017410731, + -0.44881472, + 0.27993459, + -0.25400424, + 0.104328275, + 0.35584453, + -0.06380194, + -0.008632638, + -0.13774987, + 0.22347255, + 0.34284416, + -0.15264308, + -0.20840122, + -0.62338597, + 0.28650114, + 0.45039725, + -0.12641169, + -0.07468858, + -0.046326824, + 0.4700452, + -0.39182103, + 0.17811665, + 0.3795021, + -0.59240544, + 0.5791213, + -0.045146726, + -0.4108375, + -0.30806798, + 0.55166745, + -0.25599554, + 0.12944798, + -0.6579468, + -0.060832016, + -0.51299536, + 0.7201315, + 0.40826234, + 0.31521404, + -0.39594027, + 0.030386046, + -0.3161918, + -0.104474425, + 0.012153486, + -0.21324696, + 0.16232114, + 0.041458905, + -0.34708932, + 0.3373382, + 0.62198997, + -0.32808605, + 0.09074414, + -0.17344186, + 0.41898903, + -0.47626483, + -0.6410973, + 0.3033397, + -0.586496, + -0.17162135, + -0.13217324, + -0.2674671, + -0.3099337, + -0.015676372, + 0.3224088, + 0.020955287, + -1.1030031, + -0.0868898, + 0.31348336, + 0.13870342, + -0.34074646, + 0.13996796, + 0.25612673, + 0.49375385, + -0.3231639, + 0.17083587, + -0.10337609, + -0.19430374, + -0.31546322, + -0.25721282, + 0.38520336, + -0.044453565, + 0.21529196, + 0.4947179, + 0.101060614, + -0.37935364, + 0.099106215, + 0.6867792, + 0.0025704876, + 0.20121782, + 0.96456885, + -0.1283732, + -1.1683611, + -0.11534264, + 0.40248346, + 0.053767018, + -0.41854605, + -0.3217911, + 0.36527118, + 0.10784527, + 0.20822115, + -0.12214999, + 0.08554269, + 0.3884391, + 0.23326212, + -0.18385376, + -0.1049612, + 0.20401052, + 0.04840838, + -0.42490232, + -0.3747599, + -0.65142345, + -0.49928412, + -0.07109903, + 0.091538586, + -0.010010146, + -0.2363716, + -0.48887315, + 0.28099373, + 0.07717447, + -0.11009285, + 0.80506605, + -0.12887149, + 0.46632123, + -0.06320484, + -0.07349111, + 0.12581712, + -0.50632465, + -0.7502715, + 0.72286767, + 0.66407174, + -0.32214713, + 0.3859881, + 0.43759218, + -0.42869404, + -0.44520253, + -0.037659194, + 0.24154726, + 0.08703357, + -0.45384103, + 0.38149554, + 0.07463053, + -0.041927394, + 0.013305166, + 0.26810476, + -0.8562882, + -0.2558826, + 0.06763456, + -0.28356755, + 0.16059378, + 0.04711604, + -0.22735846, + -0.8763924, + -0.052913904, + 0.10749309, + 0.32414764, + -0.06585851, + -0.25262934, + 0.18168901, + 0.0916653, + 0.040337734, + 0.05081083, + -0.25373924, + -0.04647749, + -0.9953149, + -0.07975103, + -0.50199294, + 0.43385863, + -0.0279468, + 0.06411155, + 0.10261443, + 0.03637725, + -0.66610026, + -0.708709, + 0.14549796, + 0.6292371, + 0.17535964, + 0.018937808, + 0.3016777, + 0.56049526, + -0.13939321, + -0.29889613, + -0.16259395, + 0.4676866, + -0.0076647326, + 0.20867099, + 0.5812738, + 0.24638982, + -0.34074664, + -0.516498, + 0.10343066, + 0.6827388, + -0.16262232, + -0.3601303, + -0.06537609, + 0.23276061, + 0.22300021, + 0.1624578, + 0.028339935, + -0.7799967, + 0.16542193, + -0.20398766, + 0.45729384, + -0.14371595, + 0.13227822, + -0.30483672, + -0.33329743, + 0.578063, + 0.43622142, + -0.03846567, + 0.13217428, + 0.071870655, + -0.20658496, + -0.10483428, + -0.6380193, + 0.2011417, + 0.26053575, + 0.03625028, + -0.4675262, + 0.39476883, + 0.014897877, + 0.13811682, + 0.43138757, + -0.2960908, + 0.18055347, + -0.032982454, + 0.23512948, + -0.32805216, + -0.13928756, + 0.6768971, + -0.072986275, + -0.09639254, + 0.33059004, + 0.29635146, + -0.023856357, + 0.2611434, + 0.37360448, + 0.018534344, + 0.14739662, + 0.52187234, + 0.18570372, + 0.28170028, + -0.052042663, + -0.17293404, + -0.30977768, + -0.03737603, + 0.4057302, + 0.5638813, + 0.21510433, + -0.18194678, + 0.16465731, + -0.22014868, + -0.32049236, + -0.4011475, + -0.4541289, + -0.0017518615, + -0.090146594, + 0.14004038, + 0.21848539, + -0.32724264, + -0.19425802, + -0.7267866, + -0.35283718, + 0.41814366, + 0.12426685, + 0.14658864, + -0.19503674, + -0.034824915, + -0.58092755, + -0.13017248, + -0.32866287, + 0.6277068, + -0.39306104, + 0.4697993, + -0.2470142, + 0.50767654, + -0.07310383, + 0.6671196, + 0.08656066, + -0.47994104, + -0.12072844, + 0.15912488, + -0.32437688, + -0.3463483, + -0.0067896172, + 0.13042772, + 0.11816736, + 0.022483014, + -0.072735876, + -0.07280396, + -0.20163044, + -0.65415305, + -0.1646264, + -0.21397498, + 0.23707938, + -0.15608177, + 0.109623075, + -0.34969735, + 0.1004206, + -0.33453608, + 0.23106638, + -0.21658666, + 0.15824467, + 0.38517153, + 0.063414834, + 0.05709734, + 0.107479624, + 0.20833333, + -0.13213298, + -0.5137263, + -0.95291, + -0.06912414, + -0.41868195, + -0.6520881, + 0.19743855, + -0.19321918, + -0.23971897, + -0.17536615, + 0.25063094, + -0.108771466, + -0.49420372, + -0.8019584, + 0.13576914, + -0.43574837, + -0.10416637, + -0.21026759, + -0.032561593, + 0.24116574, + -0.5091767, + -0.05749426, + -0.24203174, + 0.26416287, + -0.14884727, + 0.11166343, + 0.09139639, + 0.19042426, + -0.31835473, + 0.20356295, + -0.097481936, + -0.2594051, + 0.16354656, + 0.50466853, + 0.8873635, + 0.4801234, + 0.09321807, + -0.18272835, + -0.13771617, + 0.06615932, + -0.47643626, + -0.06752644, + 0.562797, + -0.25931978, + -0.054549776, + 0.24647458, + 0.2542115, + -0.02989177, + -0.2068162, + 0.2748734, + 0.53251004, + 0.09756206, + -0.04186126, + -0.70629615, + 0.19038881, + -0.15723485, + -0.9834419, + 0.62244105, + -0.7646929, + 0.013487862, + -0.24413529, + 0.32784876, + -0.16340125, + 0.21076083, + -0.34701565, + -0.47387967, + -0.10710363, + -0.0852028, + 0.5959022, + 0.18727405, + 0.34072825, + -0.6189017, + 0.25106782, + -0.20841098, + -0.357278, + 0.45501018, + 0.14525281, + -0.030844253, + 0.12794182, + 0.08988879, + -0.116732925, + 0.087557934, + -0.11673422, + 0.22156824, + -0.3411066, + 0.1886593, + 0.07077799, + -0.52785474, + 0.29572374, + 0.06697182, + 0.26801637, + -0.046941906, + -0.77313083, + 0.55185354, + 0.16097802, + 0.1694783, + -0.20930803, + -0.23466276, + -0.53802997, + -0.24319698, + -0.039958708, + -0.1355516, + -0.35911322, + -0.07189368, + -0.560884, + 0.20055085, + 0.51320946, + -0.80182654, + 0.11437595, + -0.29351422, + -0.087016106, + -0.028835885, + 0.09631376, + -0.06407458, + 0.57412136, + 0.05838732, + -0.37002742, + -0.102288365, + -0.35102665, + 0.28478613, + -0.1661081, + -0.03852102, + -0.0054151546, + -0.3677947, + 0.29021317, + -0.1891203, + 0.44183415, + -0.5599079, + 0.5155513, + 0.3318683, + 0.35919705, + -0.119113535, + 0.5035552, + -0.2723381, + 0.14963573, + 0.31347626, + -0.4097501, + -0.3347152, + 0.16897619, + -0.061472647, + 0.6784039, + 0.24478115, + -0.5999226, + 0.27093396, + 1.0283965, + -0.279835, + -0.076503694, + -0.6898769, + 0.2034721, + 0.41926962, + -0.13219967, + 0.5796306, + 0.30212379, + -0.2709058, + 0.27281472, + -0.040140647, + -0.6468353, + 0.56460154, + 0.033623666, + -0.14881152, + 0.12645854, + -0.20834754, + -0.30995488, + -0.001598984, + 0.16623907, + -0.08233867, + -0.34148374, + -0.08473674, + 0.019445524, + -0.26233083, + 0.4287861, + -0.46689406, + -0.30958176, + 0.28260994, + 0.08976661, + -0.11665891, + -0.2964736, + -0.14820407, + -0.1762419, + 0.5419525, + -0.630507, + -0.63939756, + 0.12463762, + 0.123888105, + -0.065095514, + -0.24493478, + -0.10248187, + -0.10433245, + -0.28702286, + -0.50444496, + -0.8259283, + -0.072356954, + -0.1903193, + -0.37907672, + 0.5384889, + -0.6086992, + 0.23767069, + 0.21664363, + 0.38258782, + -0.91976273, + -0.07425148, + 0.12536317, + 0.374138, + -0.012820087, + 0.6708946, + 0.07390079, + -0.30420235, + -0.13551344, + -0.08397073, + 0.11187801, + -0.091831826, + -0.30897006, + -0.3050888, + -0.055678137, + 0.15994307, + 0.36762, + 0.18604925, + 0.07813695, + -0.8905247, + 0.01977349, + -0.13105465, + -0.60167426, + 0.83331895, + 0.08074715, + -0.03922034, + 0.08714168, + 0.4353514, + -0.3627717, + 0.47894472, + 0.390081, + -0.16700861, + 0.049726896, + -0.23213573, + 0.55580294, + -0.14953846, + -0.06304112, + 0.7683089, + 0.43523318, + -0.5748272, + 0.14349, + 0.022570856, + -0.16107881, + -0.026785932, + 0.23980743, + 0.29334068, + -0.49580383, + 0.21463719, + 0.015602928, + -0.59442055, + 0.21942066, + -0.3592873, + 0.38194212, + -0.14315608, + 0.006316334, + -0.13606568, + 0.059023555, + -0.13350494, + -0.3473465, + 0.17897597, + -0.04271264, + -0.060129046, + 0.1470001, + 0.5280489, + 0.7916287, + 0.24326296, + -0.058014788, + -0.63561726, + 0.33414975, + -1.0738757, + -0.05935108, + -0.028371774, + 0.15531635, + 0.7251707, + -0.3813096, + -0.22769515, + -0.42002183, + -0.13887084, + 0.028182413, + -0.32896793, + 0.16953288, + 0.22536467, + -0.046354588, + -0.24269816, + 0.48906392, + -0.09965692, + 0.20276581, + 0.20606808, + 0.025765412, + 0.30582482, + 0.7153344, + 0.13747044, + -0.2871117, + -0.46894008, + 0.542788, + -0.27622065, + 0.13624878, + -0.32685846, + -0.23125267, + -0.111888714, + -0.21238515, + 0.060604446, + 0.05480578, + 0.03564173, + -0.42749816, + 0.35164633, + 0.098566554, + -0.036620628, + 0.2123527, + 0.5478809, + 0.4756705, + 0.1827656, + -0.05477235, + -0.46615583, + -0.49821058, + -0.44490203, + 0.37279472, + 0.55576897 + ], + "2025-05-20T11:44:00.09819", + "2025-05-20T11:44:00.09819", + 1.3950625658, + 74.5743331909, + 24.3858013153, + "4", + "ID: 4629789
Cluster: 4
Chunk: die Newton-Iterations-Formel auf.\n\n\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n\n\n1 , 2 1 1..." + ], + [ + 11727, + "17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\nf n+1\nr\nf\nn\nf\n2\nf\n17.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nShrinkage7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nKonstruktion des Start-Simplex\n\uf0fc oft automatisiert (x% Abweichungen von einem Startpunkt)\n\uf0fc Gr\u00f6sse des Start-Simplex bestimmt die initiale Schrittweite\nRestringierte Probleme\n\uf0fc 1-3 Gleichheits- oder Ungleichheits-Restriktionen mittels Straf-Funktionen in die Zielfunktion integrieren.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nAbbruchbedingungen7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nRosenbrock (Banana) Function\n2 2 2\n\ud835\udc53\ud835\udc53(\ud835\udc65\ud835\udc65, \ud835\udc66\ud835\udc66) = (1 \u2212 \ud835\udc65\ud835\udc65) + 100(\ud835\udc66\ud835\udc66 \u2212 \ud835\udc65\ud835\udc65 )7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex \u2013 Himmelblau Funktion7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-AlgorithmusIn Python \uf0e0 scipy.optimize.fmin\nscipy.optimize.fmin \u2014 SciPy v1.13.0 Manual\n\uf0e0 einfaches Bsp in der Vorlesung\n\uf0e0 \u00dcbung 7.2.1 u 7.2.2\n227.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nVorteile\n\uf0fe Sehr einfach anzuwenden\n\uf0fe Simplex passt sich der \u201elandscape\u201c der Funktion an\n\uf0fe Ausreichende Stabilit\u00e4t f\u00fcr die meisten Probleme mit N<5\n\uf0fe Effizienz in der Praxis gut genug f\u00fcr kleine N<5\n\uf0fe Zielfunktion muss nicht in analytisch geschlossener Form\nbekannt sein\n\uf0fe Ben\u00f6tigt keine stetig ableitbaren Zielfunktionen\n\uf0fe keine Ableitungen\n\uf0fe Findet lokale Minima\n\uf0fe Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.", + 18240, + 13776980, + null, + "md", + null, + [ + -0.76435846, + 0.1580934, + -0.073087715, + -0.29936278, + 0.10853522, + -0.093156494, + 0.2814383, + 0.5353781, + 0.51500803, + -0.0007352047, + -0.3806599, + -0.15644482, + 0.41168827, + 0.22463825, + 0.088270195, + 0.6871004, + -0.45986772, + 0.57305783, + -0.057528935, + -0.38707054, + -0.21620734, + 0.04908679, + -0.08922185, + 0.75113255, + -0.7191411, + 0.9498533, + -0.16435517, + -0.23787788, + 0.3800425, + 0.11354802, + -0.47542486, + -0.49541754, + 0.3207547, + 0.024558835, + 0.24160671, + -0.073839456, + -0.034452878, + -0.23755127, + -0.4881137, + 0.8118895, + -0.23739241, + -0.23232663, + 0.28792813, + -0.49988678, + 0.06464484, + 0.274544, + 0.06505476, + -0.86260456, + 0.056498833, + 0.27931142, + -0.1278758, + -0.20856363, + 0.19485915, + -0.047705356, + -0.32697544, + -0.7931921, + 0.019487567, + 0.12637736, + -0.1609321, + 0.55731714, + 0.097081766, + -0.21359484, + -0.55772555, + 0.19722511, + 0.27280506, + -0.3203401, + 0.22275037, + -0.12240959, + -0.17405395, + -0.39586347, + 0.27450877, + 0.12937015, + 0.12750727, + -0.4053597, + -0.468646, + -0.031685162, + -0.09188672, + -0.04874848, + 0.12770747, + 0.33860713, + 0.5243453, + -0.04679083, + 0.10053653, + 0.06549233, + 0.15000853, + -0.087590255, + 0.5222434, + 0.7876439, + 0.4583913, + -0.061303586, + 0.01976714, + 0.41601574, + 0.81642044, + 0.51794267, + 0.33250532, + -0.26579896, + -0.15804335, + -0.01966207, + 0.41194206, + -0.09763863, + -0.32625365, + -0.004959924, + -0.18148206, + -0.37532008, + 0.7159233, + -0.46937513, + -0.26835445, + 0.07513886, + -0.056224108, + 0.096346274, + 0.9037197, + -0.5023751, + 0.2899629, + 0.84151477, + -0.03865024, + -0.21180296, + -0.38464284, + -0.07266723, + -0.26846892, + 0.3381745, + -0.04981286, + -0.2894829, + 0.58900654, + -0.040414024, + 0.16378707, + 0.15510823, + 0.14505216, + -0.047563903, + -0.074382454, + 0.30430233, + -0.3858909, + 0.12309824, + 0.052641176, + -0.37547305, + 0.8152657, + 0.03078861, + 0.32295343, + 0.06905412, + -0.08102481, + 0.35439444, + -0.31769568, + 0.01026522, + -0.18288943, + -0.3909651, + 0.8626893, + -0.11527869, + 0.48890898, + -0.034046974, + -0.29530543, + -0.7619819, + 0.13989583, + 0.64122593, + 0.40454918, + 0.51814765, + -0.42360753, + -0.13860384, + 0.061985075, + -0.027465858, + -0.22388154, + -0.23838803, + 0.018694684, + 0.52114564, + -0.69672483, + 0.21743992, + 0.24562743, + -0.014547704, + -0.41148606, + -0.34475613, + 0.227848, + -0.47558486, + -0.34466496, + 0.03661737, + 0.419892, + -0.23552546, + 0.330673, + 0.8524864, + 0.31100434, + -0.36136356, + 0.33359683, + -0.15545678, + 0.004112195, + -0.06739663, + -0.3082544, + -0.48241028, + -0.8155121, + -0.38147786, + 0.3712898, + -0.8337603, + 0.1863464, + 0.54827714, + -0.43362215, + 0.098662145, + 0.67495006, + -0.24531858, + -0.04242445, + 0.07362506, + -0.03898607, + -0.12182131, + -0.4792208, + 0.054577187, + 0.101546705, + -0.2515872, + -0.22690767, + -0.35121363, + -0.98545337, + -0.27292845, + -0.17451453, + -0.077686824, + -0.11044136, + -0.03932044, + 0.65096784, + -0.07082595, + -0.10320905, + 0.39234242, + -0.091781646, + 0.4770295, + -0.52377564, + -0.30576026, + 0.5277612, + -0.2028412, + 0.20080598, + -0.30133975, + -0.49084705, + -0.5713453, + -0.11885302, + -0.2254045, + -0.58996063, + -0.032251753, + -0.22968276, + 0.19265749, + -0.38136417, + -0.1239446, + 0.0011623567, + -0.05083348, + -0.71889824, + -0.5675693, + 0.1611644, + 0.44999593, + -0.3723476, + -0.33120507, + 0.7540611, + 0.6511371, + -0.16195881, + -0.3070734, + 0.07806372, + -0.86201143, + -0.2945024, + 0.1137352, + 0.1834323, + -0.16631421, + -0.08936679, + -0.5299064, + 0.03910493, + -0.18636551, + -0.2889297, + 0.20696115, + 0.35369927, + 0.20289145, + -0.33764002, + -0.09430855, + -0.38317084, + 0.037244115, + 0.5759634, + 0.7129554, + 0.12617187, + 0.43276685, + 0.312478, + 0.019973127, + 0.09000402, + 0.2178308, + 0.0024562012, + -0.21913712, + -0.27937582, + 0.3058015, + -0.03358838, + -0.56743157, + -0.15920109, + 0.47228032, + 0.62870574, + 0.02999929, + 0.5130141, + 0.1978101, + -0.41866818, + -0.0149106365, + 0.31725156, + -0.0802273, + -0.116397515, + 0.5366313, + 0.30377573, + 0.07121404, + 0.02335701, + -0.07385683, + 0.6928565, + 0.081953086, + -0.25459424, + 0.10986748, + -0.08487703, + -0.059321046, + -0.098643646, + -0.2886576, + 0.0008137748, + 0.16832677, + 0.8399263, + -0.42941827, + -0.290886, + 0.5879338, + -0.0943083, + -0.026265424, + -0.25865796, + 0.34909162, + 0.45110312, + -0.35540134, + 0.36146218, + -0.2786593, + 0.57091653, + 0.20982745, + -0.33232117, + 0.24003023, + -0.08089431, + 0.08968344, + -0.2977375, + 0.46187538, + 0.018337708, + -0.25077543, + -0.14733641, + -0.3545895, + 0.55492234, + 0.24044016, + -0.6480576, + 0.130783, + -0.036952883, + 0.028617553, + 0.28996667, + 0.33184603, + -0.16738628, + -0.10877174, + -0.20964444, + 0.292027, + -0.26348716, + -0.3704903, + -0.52670956, + 0.19282788, + 0.29716104, + 0.9259522, + 0.19924662, + -0.47499955, + 0.35689396, + -0.47658744, + 0.008514266, + 0.410699, + -0.55712587, + 0.17223139, + 0.21658553, + -0.82245743, + 0.20009941, + 0.38614374, + 0.037410453, + 0.37453866, + -0.09873213, + -0.19888031, + -1.1254762, + -0.5996504, + 0.5107833, + -0.113702364, + 0.007988565, + -0.11390634, + -0.25078768, + -0.016949652, + -0.5926905, + -0.2582782, + 0.08202977, + -0.38086262, + -0.017230818, + 0.78881687, + 0.009829938, + 0.21818006, + 0.14945383, + 0.15970464, + 0.09800721, + 0.09753589, + 0.6123523, + -0.3973355, + 0.10512462, + 0.2740837, + -0.4168057, + 0.7247981, + 1.1398716, + 0.1558471, + 0.08539438, + 0.02868146, + -0.051404186, + 0.07461022, + -0.32217532, + 0.1819247, + -0.23899433, + 0.01592201, + 0.21257447, + 0.34466317, + 0.92074054, + 0.05108045, + -0.09421566, + 0.5694568, + -0.107999034, + 0.60161024, + -0.19636214, + -0.25250778, + -0.27944362, + -0.21642303, + -0.38906565, + -0.18214786, + -0.3653047, + 0.078966886, + 0.54663557, + -0.41351607, + 0.4484713, + 0.06653538, + 0.022298466, + 0.2672264, + 0.15730172, + -0.5184722, + -0.17143613, + 0.13028741, + -0.30456072, + 0.4932968, + -0.18217486, + -0.6264838, + -0.5055411, + 0.071678095, + -0.6292123, + 0.041987184, + 0.1798709, + 0.04998335, + -0.3450161, + 0.09068437, + -0.09607725, + -0.2890489, + -0.21462223, + 0.1940257, + -0.26697046, + -0.24825825, + -0.31663013, + 0.1315463, + -0.25506938, + -0.4076334, + 0.9255704, + -0.4903977, + -0.41694367, + 0.4183383, + 0.45987973, + 0.16560909, + 0.043659765, + -0.07942539, + -0.39618072, + -0.17740367, + 0.045842808, + 0.08081761, + -0.25314695, + 0.22389689, + 0.15246743, + 0.049586136, + -0.15456721, + -0.50682515, + 0.5409346, + -0.7032192, + -0.3539291, + -0.8000236, + 0.3321388, + -0.05679696, + 0.41920185, + -0.42620277, + 0.2735629, + 0.124630906, + 0.029739976, + -0.26046753, + 0.03180387, + -0.2669118, + 0.30640888, + -0.17302185, + -0.08427471, + -0.3992293, + -0.06521553, + 0.6178433, + 0.23549345, + 0.17295313, + 0.44622117, + 0.26672995, + 0.03762978, + 0.2365926, + -0.0121914465, + 0.11941968, + -0.036890764, + -0.5374711, + 0.9265633, + 0.3641398, + 0.43389636, + -0.51161754, + -0.5022135, + 0.43626723, + 0.3706719, + 0.2118917, + -0.40035558, + -0.15030867, + 0.47702953, + 0.21849723, + 0.43490595, + -0.45268476, + -0.08872833, + 0.08579644, + -0.43232027, + -0.41003504, + -0.402201, + 0.16690384, + -0.08179561, + 0.252404, + -0.40165174, + -0.113820806, + 0.27089784, + 0.37881324, + -0.45242876, + -0.119031556, + 0.26555106, + -0.006113112, + -0.06218499, + 0.078941405, + -0.19111665, + -0.23900408, + -0.3671733, + 0.030129587, + 0.18399382, + -0.14180627, + -0.04421821, + 0.5842025, + 0.23454142, + -0.25413555, + 0.14393127, + -0.099988095, + -0.08738351, + 0.9069038, + -0.47876003, + -0.41826642, + 0.19028097, + -0.46950024, + 0.29542574, + 0.4490241, + -0.02069278, + -0.17547676, + 0.13672361, + -0.12487464, + 0.22670579, + 0.17022571, + 0.19238675, + 0.71177465, + -0.24124925, + -0.30717227, + -0.15682207, + -0.050933976, + 0.07727265, + -0.66712177, + 0.48224786, + 0.04402926, + 0.32317436, + -0.42534146, + 0.19108811, + 0.019992642, + 0.5749297, + -0.4353638, + -0.05209191, + -0.41327205, + 0.1411579, + 0.086704, + 0.18043754, + 0.46786126, + -0.027490435, + 0.31732014, + 0.4620303, + 0.21802087, + -0.3017462, + 0.08877404, + -0.10466983, + -0.23543775, + -0.73294085, + 0.14943215, + 0.044115983, + -0.15680969, + 0.5556082, + -0.46341863, + -0.23965766, + -0.73132807, + -0.15808097, + 0.63977766, + 0.031931866, + -0.007828007, + -0.20656219, + 0.4465946, + -0.13852842, + -0.19481215, + 0.21316244, + 0.09432639, + 0.14717728, + 0.105731644, + 0.30227515, + -0.4756776, + -0.13216028, + -0.7352478, + -0.53548205, + -0.051679604, + 0.20631483, + -0.18358833, + 0.07204904, + -0.04613191, + -0.48201025, + -0.2025435, + -0.1553475, + -0.0082765315, + 0.0021823756, + -0.3422866, + 0.033421293, + -0.5794189, + 0.8407515, + -0.87416494, + -0.010459706, + 0.21605355, + 0.6057884, + 0.04999288, + -0.051267534, + 0.26570678, + -0.39252287, + -0.047345262, + 0.0019045025, + -0.01743745, + 0.19776222, + -0.14059907, + 0.3517576, + 0.67221826, + -0.23444971, + -0.3743894, + -0.53071815, + -0.23642766, + 0.097572036, + 0.3526124, + 0.18644369, + 0.24241522, + 0.14675097, + -0.13100407, + -0.5918497, + 0.048125375, + 0.18095517, + -0.83881354, + 0.2793264, + -0.4927774, + -0.13814324, + -0.44716123, + 0.37800866, + -0.119697675, + 0.011659047, + 0.23456651, + -0.021110743, + -0.050856575, + 0.22107223, + -0.35833353, + -0.048139505, + -0.38540345, + -0.09470033, + -0.4235613, + -0.7269284, + 0.07801462, + -0.27534997, + -0.9552277, + 0.12146942, + 0.15970899, + -0.13024709, + -0.5335079, + 0.8584491, + 0.054212585, + -0.57314396, + -0.1480619, + 0.018087234, + 0.10186708, + -0.87455475, + -0.57063013, + 0.1245783, + -0.04981219, + -0.060127832, + -0.030394346, + -0.19197997, + 0.06760583, + 0.32466257, + -0.14033952, + -0.15018532, + 0.060018882, + -0.47967654, + 0.36741433, + 0.06811163, + 0.17008136, + -0.53431666, + -0.3614384, + 0.10043399, + 0.55275685, + -0.06216395, + 0.013523653, + 0.0086090285, + 0.21490522, + -0.6569529, + 0.17505145, + -0.05497944, + 0.31817544, + 0.1265224, + -0.48085168, + -0.2378861, + 0.17799155, + 0.123813465, + -0.076036215, + 0.22801481, + -0.07343795, + -0.2960186, + 0.58616394, + 0.028885597, + 0.48439476, + 0.56947213, + 0.34093577, + 0.05374577, + -0.62694335, + 0.75001085, + -0.28683648, + -0.04178404, + -0.75739384, + 0.26535565, + -0.13762185, + 0.35176384, + 0.037043743, + -0.21988142, + -0.22028707, + 0.013810039, + -0.64680314, + -0.06349965, + -0.3025728, + 0.3671091, + -0.16024297, + 0.5026206, + 0.037790816, + 0.16780943, + -0.03947652, + 0.6654925, + -0.10385238, + 0.4092394, + -0.009219738, + 0.059217047, + -0.19153455, + -0.44397822, + -0.11809682, + 0.1260096, + -0.12449892, + 0.2007513, + -0.3045962, + -0.13209844, + 0.6111055, + 0.3026933, + 0.8037558, + 0.11538359, + -0.33313167, + -0.055685855, + 0.054417685, + -0.15248173, + 0.30076596, + 0.13716319, + -0.5712851, + 0.3891684, + 0.26152048, + 0.4203959, + 0.036933377, + -0.4319454, + -0.28551754, + 0.017684318, + 0.22160824, + 0.44408068, + 0.44573212, + -0.008354049, + 0.25855583, + -0.08579841, + 0.10992867, + 0.212869, + 0.036901664, + -0.31680363, + 0.62077886, + 0.374947, + 0.031086665, + 0.72747856, + 0.119584456, + -0.28424543, + -0.03566774, + 0.36809945, + 0.08928934, + 0.42875987, + -0.13426416, + -0.1702614, + 0.33824736, + -0.43423307, + 0.28540143, + 0.32786945, + -0.13347945, + 0.080083944, + 0.010167793, + -0.2322206, + -0.35421264, + 0.21657369, + 0.15161136, + -0.37010014, + 0.010822529, + -0.21322241, + -0.1076278, + 0.01660639, + -0.2978794, + 0.057266265, + 0.06769035, + 0.3464602, + 0.32845995, + -0.11300166, + 0.0294021, + 0.16493326, + 0.05593534, + 0.30448037, + -0.16910394, + 0.0910083, + 0.2392782, + -0.14683455, + 0.87557214, + 0.55410033, + -0.4011798, + -0.02103427, + -0.1795123, + 0.094825365, + -0.3555215, + -0.43804342, + -0.40228975, + -0.2081953, + 0.41411886, + 0.023502665, + -0.42560637, + 0.41251594, + 0.36667886, + -0.078081414, + 0.12028064, + 0.046292383, + 0.5380337, + -0.37641725, + 0.028952084, + -0.5120724, + -0.024499133, + -0.2444987, + 0.22903106, + 0.21325238, + -0.24167348, + 0.097905144, + 0.8546463, + -0.029499542, + 0.22881053, + -0.0961626, + 0.26125896, + 0.70006853, + 0.3113179, + 0.10514471, + 0.22516295, + 0.18668272, + 0.17133197, + 0.40563694, + -0.18695016, + -0.06567124, + 0.120568134, + 0.04438822, + -0.069247946, + -0.4587872, + 0.31199235, + -0.14861648, + 0.11203278, + 0.23531675, + 0.18250783, + 0.47738025, + 0.5108473, + 0.4239732, + -0.07652202, + 0.1433823, + -0.26051852, + 0.031035524, + 0.024118446, + 0.07600614, + -0.32805812, + 0.002581142, + 0.08066723, + -0.3516255, + -0.48156914, + -0.29400933, + -0.09547861, + -0.10555089, + 0.20663373, + -0.032584462, + -0.21473047, + 0.07050566, + -0.50129706, + 0.41608053, + 0.25420785, + -0.25865543, + -0.51864684, + -0.0983159, + -0.44819823, + 0.3936638, + 0.04694903, + -0.54191357, + -0.38527927, + 0.12975766, + -0.3029484, + 0.08293193, + 0.6302585, + -0.23793933, + -0.23428884, + 0.17348258, + 0.20523351, + 0.012134874, + 0.24703194, + -0.36114085, + -0.022778288, + 0.095217824, + 0.7496907, + 0.1906197, + -0.23438525, + 0.53418005, + -0.2802341, + 0.01022163, + 0.0760252, + 0.111532286, + 0.4389631, + 0.045519896, + -0.32444116, + -0.32643354, + -0.20295256, + -0.8235279, + 0.17627843, + 0.7164485, + -0.13235977, + 0.30631968, + 0.33759418, + 0.536431, + -0.078100495, + 0.034237713, + 0.22985068, + -0.3619376, + 0.10277475, + 0.22478308, + 0.01051496, + 0.067732245, + -0.05382456, + 0.26086462, + -0.2504573, + -0.2826854, + -0.07047109, + 0.073169366, + -0.27716532, + -0.0015296489, + 0.70835984, + 0.009485222, + -0.28480753, + 0.18213597, + -0.49422705, + -0.106290564, + -0.26712662, + -0.14089054, + 0.4073733, + 0.24990521, + -0.21663104, + -0.34164974, + 0.19806218, + 0.08757973, + 0.1735103, + 0.13821153, + -0.01913929, + 0.52424246, + -0.53359693, + -0.32855862, + -0.17660622, + -0.07725928, + -0.21871358, + 0.063272014, + -0.11694294, + -0.19619739, + 0.39203867, + 0.34497496, + 0.00968425, + -0.40117228, + 0.041847542, + -0.6226212, + -0.30022696, + 0.14355904, + 0.005571505, + -0.27352148, + 0.023582727, + -0.005375512, + -0.27644816, + 0.49334803, + 0.50502634, + -0.6184178, + -0.06339064, + 0.16493094, + -0.059731133, + 0.5060758, + -0.14926529, + -0.9357425, + -0.48184216, + 0.5180299, + -0.5632575, + -0.023265433, + -0.012530537, + -0.36599427, + 0.3855212, + 0.099426135, + -0.12885815, + -0.17985141, + -0.050658707, + 0.1771085, + 0.42179242, + -0.09094602, + -0.06849867, + -0.7441382, + 0.085169435, + 0.1553886, + 0.03784372 + ], + "2025-05-20T11:44:17.812002", + "2025-05-20T11:44:17.812002", + -74.6829681396, + -61.310043335, + 31.0393733978, + "5", + "ID: 13776980
Cluster: 5
Chunk: 17.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nExpansion\nf\nf\nn+1\nf\nn\nf\n2\nf\n1\nf\nr7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nContraction\nf\nf\n..." + ], + [ + 11729, + "mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n\n\n327.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nAusserdem ist die Richtung des Gradienten bei nicht-isotropen Minima (dies ist die Regel) schlecht.\n\nisotrop: Gradientenrichtung gut nicht-isotrop: Gradientenrichtung schlecht\n.\n\nDies f\u00fchrt zu dem \u00abklassischen\u00bb Zig-Zag-Routen, die nicht erw\u00fcnscht sind.\n\n337.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nIdee einer SEHR einfachen Schrittweitensteuerung:\nFalls Schrittweite zu gross: Reduziere Schrittweise iterativ um die H\u00e4lfte, so lange bis f < f .\n\nn+1 n\nFalls Schrittweite evtl zu klein: Verdopple Schrittweite so lange bis f < f , dann reduziere Schrittweite noch 1-mal.\n\nn+1 n\n\uf0e0 test_Steepest_Descent.py\n\uf0e0 \u00dcbung 7.7.2\n34\u00dcbungen\n35\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\n36\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,", + 18240, + 16188844, + null, + "md", + null, + [ + 0.21610712, + -0.34170783, + -0.2582149, + -0.13907842, + -0.61066616, + 1.0078603, + -0.3240201, + 0.6873087, + -0.29100716, + 0.42602944, + -0.19834957, + 0.07046136, + 0.19968116, + 0.05360639, + 0.4098373, + 0.8089135, + 0.38811648, + 0.020720284, + -0.29712686, + 0.09276265, + 0.24396716, + 0.49379405, + 0.14850694, + 0.8405345, + -0.42497858, + 0.54847485, + 0.5315522, + 0.2563539, + 0.3031277, + 0.32693532, + -1.0098323, + -0.54120606, + 0.2183274, + -0.36752322, + -0.03983044, + -0.3212026, + 0.4653786, + 0.6545438, + -0.20859239, + 0.24754442, + -0.26476225, + 0.20086898, + 0.27902398, + 0.30439684, + -0.511996, + 0.48540705, + -0.2720875, + -0.27440175, + 0.54314584, + -0.82200634, + -0.19053495, + 0.029926717, + 0.398478, + -0.5969824, + 0.37821722, + -1.0161233, + 0.11919589, + -0.0028134063, + -0.2873751, + 0.43212482, + 0.050068364, + -0.09143582, + -0.02543508, + -0.29476294, + 0.49181077, + -0.7949642, + 0.8474369, + -0.45979714, + 0.1913284, + -1.1775037, + -0.13730288, + 1.1601539, + -0.17315605, + 0.06397681, + 0.4084017, + -0.3379514, + -0.042783346, + 0.1312747, + -0.5110681, + 0.5032175, + 1.011381, + -0.35415074, + -0.29897973, + 0.3352387, + 0.046979457, + 0.9281235, + 0.7794734, + 0.979208, + -0.62746745, + -0.06440086, + 0.02056218, + 0.4631862, + -0.41932887, + -0.14032038, + 0.4387039, + 0.31654036, + -0.21557382, + 0.23203044, + 0.6833416, + 0.7943702, + -0.3042444, + 0.19797122, + 0.96993744, + -0.9783734, + 0.46330336, + -0.046329584, + -0.46998185, + -0.23301779, + -0.58868104, + 0.21932237, + 0.69747776, + -0.6695301, + -0.5490598, + 0.20945036, + 0.4844848, + -0.46872902, + 0.47233516, + 0.02829311, + -0.16637819, + 0.15635177, + -0.37190187, + -0.9155665, + 0.04265388, + 0.06619617, + 0.6524881, + 0.5039427, + -0.04062849, + -0.25350952, + 0.3672974, + 0.27789792, + 0.2866974, + -0.64593893, + 0.7398978, + -0.68064785, + 0.2511096, + -0.6026129, + -0.24463147, + -0.20240761, + -0.11480774, + -0.4233029, + -0.5244546, + -1.3436545, + -0.045248013, + -0.7590879, + 1.0389054, + 0.24050002, + 0.02171108, + 0.5076742, + 0.35538733, + -0.2934364, + -0.36472857, + 0.090743154, + 0.26938072, + 0.92038983, + -0.25277385, + 0.07719758, + 0.34196678, + -0.07766472, + 0.18402007, + -0.17247602, + 0.45100924, + -0.4953551, + -0.6399714, + -0.12482366, + 0.50583816, + 0.17909491, + -0.31236172, + -0.5700879, + 0.8142332, + 0.081353895, + 0.6612395, + -0.31171215, + 0.6694775, + 0.18347411, + 0.6949669, + -0.08658582, + 0.81987506, + 1.4820253, + 0.4921878, + -0.40194663, + 0.42631844, + 0.25177687, + -0.49247232, + 0.4686098, + -0.884753, + 0.25234473, + 1.2933986, + -0.049991243, + -0.18223089, + 0.44750527, + 0.044140544, + -0.13212512, + 0.03908568, + 0.22012796, + -0.30675158, + 0.08215075, + -0.9997249, + 0.46272606, + -0.057759956, + 0.46804577, + -0.65390915, + 0.18121451, + 0.18792771, + -0.3917414, + -0.58103204, + -0.106285244, + -0.43567497, + 0.0029532826, + -0.5842319, + 0.7649751, + -0.15150426, + -0.14852601, + -0.41726714, + 0.45418084, + 0.65493613, + -0.2777432, + 0.5461147, + -0.91013145, + 0.10615094, + 0.57800585, + 0.43953797, + 0.52388126, + 0.59976745, + -0.3265308, + 0.06088296, + 0.024082754, + 0.27500105, + 0.78999335, + 0.81131923, + -0.34176257, + -0.41218174, + -0.48943624, + -0.5650195, + -0.09200231, + -0.7478293, + -0.49558005, + 0.5952393, + -0.11126892, + -0.39854655, + -0.02397759, + 1.0572264, + -0.10263875, + -0.18896714, + -0.7087554, + 0.42055285, + -0.005795934, + 0.0016986951, + -0.5826482, + 0.17145146, + 0.04782698, + 0.008605219, + -0.33104646, + 0.31809986, + 0.6931411, + -0.059445824, + -0.35173127, + 0.33814853, + 0.71478164, + -0.8456227, + 0.18025818, + -0.59973043, + -0.6825434, + 0.15589005, + -0.28807, + -0.1170959, + 0.6949042, + 0.32213587, + 0.30828536, + -0.56129205, + 0.22549807, + -0.2769241, + 0.8331133, + -0.63590044, + 0.3773966, + -0.40455693, + -1.0846455, + -0.31960315, + -0.012908582, + 0.8286142, + -0.42579967, + 0.07487789, + -0.491373, + -0.11581444, + -0.018495994, + -0.49328724, + 0.07291444, + -0.1354525, + 0.6570908, + 0.018441334, + -0.7136275, + -0.394664, + -0.7392031, + -0.33123988, + 0.18986902, + -0.44218844, + -0.03672663, + 0.19268346, + 0.07882285, + -0.12050502, + -0.4031803, + 0.48461413, + -0.5274426, + -0.3404508, + -0.74830246, + 0.6537432, + -0.20468289, + 0.09166819, + -0.121248245, + -0.7021304, + 1.00578, + -0.72209996, + -0.6414535, + 0.58992034, + 0.22223103, + 0.632037, + 0.08978217, + 0.5589308, + 0.35982734, + -0.9687631, + 0.34386966, + -0.32487908, + -0.034297094, + 0.41395962, + -0.3107426, + -0.13023803, + -0.4908955, + 0.7269075, + -0.43536326, + -0.60122454, + -0.29983085, + -0.5400913, + 0.041919954, + -0.21864145, + 0.7213906, + -0.111735985, + -0.47600487, + -0.0031837225, + -0.3050074, + -0.7322953, + 0.16978635, + -0.24244471, + 0.0001225525, + 0.91895986, + -0.13676165, + -0.80691725, + -0.048720796, + 0.7108992, + -0.009051092, + -0.100255065, + -0.09516011, + 0.5588628, + 0.5564072, + -0.25045562, + -0.4960916, + -1.1323867, + 0.11936732, + 0.39202914, + -0.10291657, + -0.18153173, + 0.7844175, + -0.970192, + -0.75276583, + -0.80025136, + -0.2930739, + -0.20164618, + -0.049356233, + -0.6070099, + 0.87396836, + -0.83136827, + -0.34843773, + -0.39875785, + -0.3896835, + -0.52458715, + 0.88109076, + 0.033109926, + 0.36121753, + -0.2378299, + 0.40353322, + -0.359295, + 0.06513582, + 0.18539643, + -0.65898174, + 0.17032634, + -0.61761093, + -0.4670989, + 0.42029515, + 2.492098, + -1.0685512, + -0.25783846, + -0.061305285, + -0.4614005, + -0.43839523, + -1.0307093, + -0.06282803, + -0.17336224, + -0.045120586, + 0.5554863, + 0.35667646, + 1.083029, + -0.2838388, + -0.80199116, + 0.23104411, + -0.08114969, + 0.18404332, + -0.4801129, + -0.29103512, + 0.040294632, + -0.7168218, + 0.3373778, + 0.3376303, + 0.2860886, + 0.22465688, + 0.82164073, + -0.28746676, + 0.102047175, + -0.076054074, + 0.07718318, + 0.30595335, + -0.21119013, + -0.8824734, + 0.74263585, + 0.23403302, + 0.2242701, + -0.13988382, + 0.3347621, + -0.47260973, + 0.03750425, + -0.21823752, + 0.5403979, + 1.0854841, + 0.18132886, + -0.9692171, + 0.21211968, + 0.08338691, + 0.32460546, + 0.40595904, + 0.4655614, + -0.39682814, + -0.31085533, + -0.111354485, + -0.11753611, + -0.81394947, + 0.21717328, + -1.0845712, + -0.44836223, + -0.8466177, + -0.19974634, + 0.9882812, + 0.0890016, + 0.5522668, + -0.06767276, + 0.39504752, + -0.4622807, + 0.4381723, + 0.15280905, + 0.42732584, + -0.47989413, + 0.4109313, + 0.4594461, + 0.33422354, + 0.37408018, + 0.030283134, + 0.026917215, + 0.57763326, + -0.3505468, + -0.4145103, + -0.16357224, + -1.1120538, + -0.25640076, + -0.9251214, + -0.2698165, + 0.16597259, + 0.50696796, + 0.52712345, + -0.22624606, + -0.6591132, + 0.0057306103, + 0.12591052, + 0.113775805, + -0.4102314, + 0.2006317, + 0.62404746, + 0.41583973, + -0.42746988, + -0.48486865, + 0.09273217, + -0.27590284, + 0.055217236, + -0.061483607, + 0.17805272, + 0.37678847, + 0.18731388, + 0.36124834, + 0.65263, + 0.42178708, + 0.24066418, + -0.030739963, + 0.63995516, + -0.8225461, + -0.72261834, + -0.52842116, + 0.50984836, + -0.030361123, + -0.1577363, + 0.1648093, + -0.19359025, + -0.034949284, + 0.2988552, + -0.36837912, + -0.841917, + 0.030720156, + 0.79013705, + -0.08412952, + -0.08798884, + 0.24427596, + 0.030530788, + 0.25383794, + -0.112018175, + -0.73104775, + -1.1856406, + -0.4954528, + -0.092962936, + 0.0026716962, + 0.288796, + 0.14233585, + -0.1019603, + 0.022725329, + 0.5512363, + 0.2314963, + 0.33837482, + -0.23922195, + 0.9716413, + 0.019702293, + -0.33858964, + -0.38239527, + -0.47916412, + -0.18356237, + 0.6759993, + 0.1446533, + 0.2868742, + 0.09440738, + 1.0093181, + 0.107552245, + 0.29649833, + -0.12859958, + -0.36744794, + 0.38876885, + -0.43942642, + 0.59571046, + 0.06015724, + -0.2921609, + 0.9253388, + -1.4466951, + -0.07155932, + -0.3801673, + -0.3237101, + -0.30034134, + 0.4394218, + 0.21598208, + 0.13728024, + -0.4547667, + -0.50926316, + 0.7725967, + -0.5529058, + 0.22600242, + -0.76590276, + -0.38595828, + -0.5944012, + -0.12059869, + -0.5490608, + -0.1074872, + -0.019830607, + 0.44994834, + -0.19807145, + 0.31822562, + -0.015663408, + -0.36639303, + 0.44426286, + 0.9203479, + -0.42189762, + 0.251023, + -0.12467627, + 0.10124249, + 0.51018065, + -0.11293939, + -0.28565067, + -0.58540344, + -1.2013627, + -0.6528829, + 0.10190184, + 0.18413442, + -1.2284454, + -0.047073707, + -0.04774294, + 0.00879465, + 0.6565978, + -0.16963653, + -0.15605667, + 0.40658137, + -0.3324082, + 0.6163044, + 0.41124812, + 0.22242068, + -0.18809533, + -0.9417567, + -0.2874769, + -0.06535176, + 0.67364764, + -0.08812605, + 0.41780424, + -0.5377658, + -0.0015818104, + 0.31167334, + -0.19430287, + 0.1621927, + 0.4404119, + -0.24636857, + -0.07045509, + 0.48035216, + -0.09852341, + 0.093290314, + -0.10909206, + -0.4603803, + -0.14152586, + 0.95571095, + 0.62744784, + -0.45938164, + -0.6931386, + -0.30443108, + -0.6424439, + 0.39389208, + -0.40803915, + 0.19551261, + 0.5531618, + 1.0679308, + -0.06768836, + -0.8153055, + -1.0045842, + -0.25520268, + 0.22451389, + 0.57086205, + 0.38129184, + -0.09262459, + 0.1768108, + -1.6889908, + 0.61961186, + -0.18790792, + 0.17168213, + -0.40459812, + -0.37758875, + -0.8249033, + 0.04190822, + -0.26293743, + 0.40416068, + 0.12001578, + -0.12035736, + -0.19455516, + 0.2879577, + -0.16793215, + -1.2323643, + -0.25752723, + 0.2659017, + -0.8278869, + 0.5417745, + 0.07752211, + 0.6846488, + 0.052604392, + -0.25198662, + 0.21213739, + -0.003738284, + 0.45335928, + -0.41089243, + -0.021020848, + -0.29493326, + -0.38712823, + 0.0833468, + 0.41104013, + 0.58993864, + -0.5304365, + 0.36153173, + -0.6706966, + -1.2766887, + 0.053258628, + -0.5208078, + -0.97999114, + -0.458128, + 0.15535569, + -0.4879516, + -0.35154346, + 0.25341767, + -1.1727337, + 0.388078, + -0.3207617, + -0.1792395, + 0.46917552, + 0.55204815, + -0.11608875, + 0.51117605, + -1.0087101, + -0.5363407, + 0.21466093, + -0.15020578, + 0.81653947, + -0.11078435, + -0.25104895, + -0.036922105, + 0.13896334, + -0.4325813, + -0.08875872, + -0.93452597, + -0.051369436, + 0.17095909, + 0.10732886, + 0.58508897, + 0.12577686, + 0.65640986, + -0.17895316, + 0.35242403, + 0.057221774, + -0.30416933, + 0.3452596, + 0.14200568, + -0.38665596, + -0.6789423, + -0.30404127, + -0.73584646, + 0.49731708, + -0.09426406, + 0.1128646, + 0.047390196, + -0.64774776, + 0.3171811, + -0.22691575, + 0.13129006, + 0.07500176, + -0.46215487, + 0.7174379, + 0.68840504, + 0.00710728, + 0.589038, + -0.57648844, + 0.08382875, + -0.91340125, + 0.39176834, + 0.29309952, + -0.5130027, + 0.696098, + -0.08430301, + -0.7817625, + -0.04281693, + 0.015537277, + -0.47967958, + 0.71796507, + -0.1570086, + -0.7742213, + 0.2018594, + 0.408714, + -0.4905717, + 0.6462781, + -0.16660312, + -0.69596094, + 0.06355047, + 0.19466506, + 0.12645929, + 0.06850716, + -1.210323, + 0.38836396, + -0.3030721, + -0.0051871464, + -0.41546592, + -0.7614092, + -0.22136779, + -0.41378182, + 0.44157362, + -0.4242948, + -0.38165456, + 0.33663103, + 0.18641976, + -0.39836776, + 0.7113516, + 0.5622426, + 0.08546512, + 0.035378065, + 0.47266406, + -0.456017, + 0.31999475, + -0.4385763, + 0.34555626, + -0.06886948, + 0.4506342, + -0.3744443, + -0.92741245, + 0.1837462, + -0.046406038, + -0.5281768, + 0.66094655, + -0.3484537, + 0.56631184, + -0.076211855, + -0.19109938, + -0.18815644, + -0.2087199, + 0.3351898, + -0.6983129, + -0.4601016, + 0.46921366, + -0.47281116, + -0.26249737, + -0.55167055, + -0.17602403, + -0.0702986, + -0.18690544, + -0.529135, + 0.50735116, + 0.28183684, + 0.14409986, + 0.2657736, + -0.15059504, + -0.19967055, + 0.60094106, + 0.118063115, + 0.2720132, + -0.18535979, + 1.0942022, + -0.60162324, + -0.383341, + 0.80736315, + 0.5034312, + 0.4619883, + 0.3257523, + -0.26554084, + -0.10119011, + -0.6222226, + 0.71736336, + -0.26540396, + -0.46771964, + 0.053038403, + 0.25171256, + 0.43529844, + 0.02142495, + -0.04689499, + 0.44853666, + 0.26083484, + -0.116901405, + 1.1373184, + -0.38815048, + -0.48569024, + 1.0568948, + 0.1556075, + -0.7552762, + 0.09545909, + -0.56781906, + 0.6930021, + 0.62896156, + -0.509037, + 0.13022387, + 0.06489645, + 0.29460526, + -0.4683541, + -0.3275022, + -0.5653447, + 0.28005564, + 1.314961, + -0.45528728, + 0.3595664, + -0.07831573, + 0.21623048, + 0.8490763, + -0.44413608, + -0.2838844, + 0.7364958, + -0.55966, + 0.36763892, + -0.09257196, + 0.5086046, + 0.1791147, + 0.12651272, + -0.0659446, + 0.35642254, + 0.4960022, + -0.3261274, + 0.3582364, + -0.4566354, + -0.9513329, + -0.23286606, + -0.1476529, + 0.097513385, + 0.26567224, + 0.23415206, + 0.6542146, + -0.65086573, + 0.34176886, + -0.25682765, + 0.13040833, + -1.3093685, + -0.1956301, + -0.16950317, + -0.6464086, + 0.11677717, + 0.004370507, + 0.19164248, + 0.015051959, + 0.6294746, + -1.0208678, + 0.98100454, + 0.120617986, + 0.095772706, + -0.08292487, + 0.28645653, + 1.3256584, + 0.67311364, + 0.20377639, + -0.024075877, + -0.8684684, + 1.0630727, + 0.11346477, + 0.6664604, + 0.053850546, + 0.20282528, + -0.61186343, + 0.15420926, + 0.49206918, + 0.89120436, + -0.50234985, + 0.32309282, + -0.7069893, + -0.27246547, + 0.32513028, + 0.821497, + 1.1217507, + 0.3474736, + -0.72642416, + 0.43438447, + 0.91971123, + -0.6991543, + 0.5903043, + 0.36776185, + 0.91723686, + -0.15330768, + 0.34444672, + 0.4993723, + 0.005135016, + 0.2397139, + -0.19212697, + -0.26486704, + -0.20071188, + 0.77758276, + -0.32986975, + 0.85055673, + 0.4470376, + -0.355585, + 0.5791537, + -0.18879102, + 1.0138875, + -0.6377575, + -0.47679564, + 0.23453407, + -0.21484935, + -0.06277963, + 0.016267639, + -0.038522463, + -0.2910481, + -0.08775177, + -0.32365826, + -0.120528236, + 0.6254488, + 0.36157244, + -0.15227316, + -0.15612845, + -0.1488147, + 0.5264894, + 0.6869712, + -0.47951394, + -0.5887315, + 0.29084662, + 0.3772035, + -0.9243756, + 0.7098194, + -0.26495278, + 0.18187267, + -0.33764955, + -0.9423133, + -0.4527006, + 0.5557752, + -0.2779557, + 0.21573702, + -0.046992008, + -0.24766928, + 0.28135338, + -0.20724025, + 1.1065139, + -0.33606735, + 0.14305514, + 0.16318558, + 0.13807955, + -0.3045083, + 0.4627882, + 0.50714403, + 0.07161705, + -0.12695299, + 0.46468607, + 0.30766177, + -0.26252046, + -0.35145894, + -0.119316, + -0.95560217, + 0.009730957, + -0.2715275, + -0.10523389, + 0.14546426, + 0.29558143, + 0.6752123, + 0.27917668, + -0.8822073, + 0.391304, + -0.13735482, + 0.8109309, + 0.6757575, + -0.06867047, + 0.41263005, + 0.05722613, + 0.49767062, + -0.54687214, + -0.530074 + ], + "2025-05-20T11:44:39.727931", + "2025-05-20T11:44:39.727931", + 45.3172531128, + -89.4484939575, + 84.5875778198, + "3", + "ID: 16188844
Cluster: 3
Chunk: mit c > 0 steuert die Schrittweite.\n\n\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\n\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\n\n\nEr ..." + ], + [ + 11731, + ".\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n42\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\n(b) Stellen Sie damit die Newton-Iterations-Formel auf und programmieren diese in Python.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n43\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(c) Es sei a = 0.1.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n(d) Es sei a = 10.\n\nF\u00fchren Sie zweimal eine Steepest-Descent-Iteration ohne Schrittweitensteuerung (c=1) \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem\n1,2 , 2,2\nStartwert (x =1 x =1).\n\nBestimmen Sie jeweils das Quadrat der L\u00e4nge des Gradienten.\n\n1,0 , 2,0\n44\u00dcbung 7.4.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.", + 18240, + 6062665, + null, + "md", + null, + [ + -0.3088199, + 0.3640352, + -0.31572556, + -0.5632599, + -0.8831732, + 0.1357588, + 0.2828112, + -0.073052764, + -0.14028428, + -0.4137379, + -0.3779284, + 0.22783622, + 0.6706066, + -0.056991823, + 0.40256593, + 0.05860323, + -0.27182338, + 0.73582864, + 0.04000853, + -0.95994973, + 0.3459747, + -0.008289742, + 0.791801, + 0.7151977, + -0.7154374, + 0.9411023, + -0.18865997, + -0.31734714, + -0.26258975, + -0.47804314, + 0.28099033, + -0.4079598, + -0.5721661, + -0.24909514, + -0.12890777, + -0.14122331, + 0.23889612, + -0.87130135, + -0.05149117, + 0.40285057, + -0.7891446, + 0.8133566, + 0.53938705, + -0.046355966, + 0.2888184, + 0.21963145, + 0.22220808, + -1.3960292, + 0.09103116, + -0.3063383, + -0.14920121, + -0.24261743, + 0.6040509, + -0.04994193, + 0.7676259, + -0.26639926, + 0.4522859, + 0.050208904, + -0.26670495, + -0.08939862, + 0.40578613, + 0.6614084, + -1.1288393, + -0.11489549, + 0.21283846, + -0.11688706, + 0.5288078, + -0.033631053, + 0.14976765, + 0.19768643, + -0.65979356, + 0.4471144, + 0.0056704655, + -0.09458379, + -0.112005964, + 0.0008882331, + -0.37963963, + 0.8810093, + -0.07736359, + 0.2620185, + 0.25588855, + 0.17052135, + 0.5200379, + -0.34820402, + 0.6814076, + -0.84188217, + 0.16602696, + 0.21277499, + 0.078822225, + -0.39773995, + -0.2619002, + 0.22882652, + -0.33049983, + -0.3447321, + -0.5935127, + 0.12364051, + -0.65231156, + 0.3024006, + 0.3214048, + 0.2883591, + 0.10383496, + -0.12549928, + 0.5816095, + -1.3210194, + -0.84840876, + -0.19548997, + -0.4598337, + 0.24828933, + -0.20160554, + 0.6754582, + 1.2274503, + -0.23909806, + 0.0061853193, + 0.25237063, + 0.50343853, + -1.0903183, + -0.40035185, + 0.7934746, + -0.20527695, + -0.18899569, + 0.48278388, + 0.31971702, + 0.6695269, + 0.25840232, + 0.52140886, + 0.066064216, + 0.23381665, + 0.33242688, + 0.42536396, + 0.68530387, + 0.5099268, + -0.082808204, + 0.67430466, + -0.09424926, + -0.07362352, + -0.23353042, + 0.10285139, + 0.042422168, + -0.07468959, + -0.47640082, + 0.14910409, + -0.5035368, + -0.65842396, + 0.17512524, + 0.15496688, + -0.18074897, + -0.36149305, + 0.32410088, + 0.20439592, + 0.050676465, + -0.263446, + 0.7949653, + 0.57088363, + 0.4200039, + 0.46859622, + 1.1394612, + 0.0546111, + -0.33434358, + -0.8402423, + -0.38273168, + 0.20940629, + 0.7083559, + -0.74333835, + -0.16562489, + -0.05041253, + 0.2802357, + -0.71080893, + 0.014414512, + 1.048351, + -1.312922, + -0.08374014, + -0.644255, + 0.19481163, + -0.10899393, + -0.13414355, + 1.0315136, + 0.23051096, + -0.74234325, + -0.02334758, + 0.042068914, + 0.6659071, + 0.29590544, + -0.6934806, + 0.4996118, + -0.3005992, + 0.6479202, + 0.9435401, + 0.17789787, + -0.33025825, + 0.012468271, + -0.47057074, + -0.14862373, + 0.03098984, + 0.71897036, + -0.2255914, + 0.6405778, + -0.24902289, + -0.83683836, + -0.13380063, + -0.3805582, + -0.1733455, + -0.3476708, + 0.035452522, + -0.24631682, + -0.59985507, + 0.23694268, + -0.22281624, + -0.46051657, + 0.72813493, + 0.020002536, + 0.468085, + 0.03300228, + 0.5319899, + 0.44964796, + -0.044908475, + -0.17248815, + -0.44756606, + 0.024516732, + -0.55600876, + -0.36660847, + 0.50394934, + 0.14802715, + -0.09132658, + 0.5415638, + 0.3663799, + -0.42213976, + -0.4594, + 1.2996093, + 0.2845384, + -0.071948215, + -0.5455058, + -0.72335106, + -0.20604375, + -0.90673524, + -0.50468427, + -0.3518557, + 0.5413614, + 0.43315443, + -0.02303844, + 0.04827759, + 0.31603244, + -0.4553209, + 0.6144104, + 0.57707554, + 0.4910051, + 0.31598514, + 0.7190905, + 0.48233894, + 0.18999974, + 0.24193148, + 0.46849567, + -0.95606863, + 0.0021882951, + 0.9354973, + 0.42915505, + 0.22638497, + 0.09130642, + 0.31219122, + -0.3842324, + 0.046101563, + 0.45818305, + 0.04681496, + 0.5266481, + 0.35453343, + -0.5823564, + 0.6381164, + 0.42496845, + 0.59338266, + -0.43035588, + 0.13922337, + -0.29618904, + 0.17968069, + 0.104957044, + 0.29830676, + -0.27550116, + -0.5317129, + -0.47474512, + -0.12735772, + -0.7173798, + -0.12453854, + -0.037717506, + -0.013752282, + -0.54321134, + -0.011025088, + 0.3929911, + 0.21110871, + -0.29390416, + -0.4398478, + 0.10793352, + 0.6167283, + -0.26232195, + -0.3060531, + 1.5972784, + -0.26240337, + -0.7141756, + 0.223608, + 0.09221337, + 0.02683413, + -0.02056187, + -0.11638299, + 0.19315091, + 0.24724475, + 0.45774633, + 0.14341433, + -0.013861893, + 0.05551608, + 0.057693206, + -0.5671894, + -0.54670286, + 0.83107084, + 0.08118376, + -0.16982524, + 0.8060923, + -0.6531955, + 0.039523475, + 0.015200672, + 0.061988413, + 0.462259, + 0.15826909, + 0.8692533, + 0.014861889, + 0.5202361, + 0.21449433, + -0.76457024, + -0.063050814, + 0.01368928, + 0.71908975, + -0.057268508, + -0.7538402, + 0.36335906, + -0.55076426, + 0.36258003, + 0.9177642, + 1.0365118, + 0.47537407, + -0.5436593, + 0.464648, + 0.24605666, + -0.35141495, + -0.6668988, + -0.48540115, + 0.5560462, + -0.2636688, + 1.2665286, + -0.16587979, + -0.18019848, + 0.72870064, + -0.20420933, + 0.10623547, + 0.4718796, + -0.22966373, + 0.036914222, + 0.27656698, + 0.6051079, + -0.13796762, + -0.40972286, + 0.15141766, + -0.21325147, + -0.34234613, + -0.03215593, + -0.06801142, + -0.71103543, + -0.3336062, + -0.31844917, + 0.29350325, + 0.17994773, + 0.19918722, + -0.08757416, + -1.1048868, + 0.06875654, + -0.15387791, + -0.6662227, + -0.119967304, + -0.011460264, + -0.67614293, + -0.11738942, + -0.13365498, + 0.21331123, + -0.5455954, + 0.24807379, + 0.5295415, + -0.6367338, + 0.11844511, + 0.34747794, + -0.45634124, + 0.50054, + 1.9607627, + -0.26921248, + 0.35316572, + -0.15520753, + -0.8610759, + -0.21704057, + -0.4925709, + 0.030543435, + -0.0066538826, + 0.21042804, + 0.14126527, + 0.43853846, + 0.017657787, + -0.22125511, + -0.22817688, + 0.74757516, + -0.14075258, + 0.25253615, + -0.3080665, + -0.34832978, + -0.18888298, + 0.6764284, + 0.07958293, + 0.51727355, + -0.316754, + 0.21469021, + 0.54468656, + -0.06519739, + 0.3221296, + -0.17863315, + -0.24398446, + 0.36740807, + 0.19029659, + 0.07282646, + 0.899712, + 0.68628436, + -0.21379758, + -0.168105, + 0.683464, + -0.8273096, + -0.44060808, + 0.27866498, + -0.39182326, + -0.13381137, + 0.2554869, + 0.2604409, + 0.30884996, + -0.5134714, + -0.49222755, + -0.56861246, + 0.5954987, + 0.3108279, + -0.077349365, + -0.00474371, + -0.4206098, + 0.09955997, + -0.3305462, + -0.19988501, + 0.22669268, + -0.7809948, + 0.074481964, + 1.4126787, + 0.6626847, + 0.46790278, + -0.14552452, + -0.56650484, + -0.7802672, + -0.321216, + -0.31190592, + -0.110118896, + -0.14284605, + -0.4730835, + 0.112689555, + 0.066239044, + 0.046106115, + -0.13430017, + 0.45663616, + -0.27786967, + 0.27261853, + -0.27804503, + 0.32094038, + 0.1212979, + -0.3597033, + -0.5845554, + 0.44472754, + 0.47940361, + -0.41501278, + -0.13482891, + 0.12698592, + -0.35921603, + -0.1212354, + 0.22246975, + -0.21689823, + 0.07700017, + -0.048332393, + 0.3557376, + 0.6186823, + -0.017052576, + 0.61832374, + -0.15226789, + 0.29612473, + -0.25401723, + -0.65612364, + 0.3121953, + 0.37310302, + -1.0489149, + -0.39185792, + 0.4027487, + 0.30265778, + -0.7402459, + -0.14883378, + 0.7063136, + 0.26176122, + 0.26845866, + 0.03540062, + -0.36525583, + 0.75120807, + -0.19560763, + -0.09375051, + -0.6529012, + 0.200156, + -0.100323685, + -0.21730806, + -0.497785, + -0.6464898, + -0.4650893, + 0.21448687, + -0.11703843, + -0.19384393, + 0.05442716, + -0.108523875, + 0.49543798, + -0.4824949, + -0.075105846, + 0.41261023, + -0.40865317, + -0.06971934, + -0.20280506, + 0.22877029, + -0.004813805, + -0.45413977, + -0.51308274, + 1.1073762, + 0.5002776, + -1.2531722, + 1.1472095, + 0.2049424, + -0.4867228, + 0.03140496, + -0.26210678, + 0.5580943, + 0.13030833, + -0.2970394, + 0.3795617, + -0.20627137, + 0.26019174, + 0.360795, + 0.21765223, + 0.12728491, + -0.1675964, + 0.98623395, + -0.24520332, + -0.22635351, + -0.042104065, + -0.29286367, + -0.5668005, + -0.26149136, + -1.0234575, + 0.23389298, + -0.24646108, + -0.19225991, + -0.20495003, + 0.3499122, + -0.050679103, + 0.23677619, + -0.9238653, + -0.3816512, + -1.3653157, + 0.15051529, + 0.043255422, + -0.79281074, + -0.23342094, + -0.2503411, + 0.32354343, + -0.3477475, + -0.6182941, + -0.19638057, + -0.14853376, + 0.3753325, + -0.040184617, + -0.2415773, + 0.64929175, + 0.5570046, + 0.4211078, + -0.89693666, + -0.10882637, + 0.4765065, + -0.5635859, + 0.04869545, + -0.39412913, + 0.18681027, + -0.22497606, + -0.112218134, + 1.1284455, + 0.37725377, + -0.7721224, + -0.09823869, + 0.26001224, + 0.23079857, + 0.39520764, + -0.23493029, + -0.099763446, + -0.56669074, + 0.16690072, + -0.4035781, + -0.15068443, + 0.21722904, + -1.0879602, + -0.27624446, + -0.023628391, + -0.30603942, + 0.36875868, + 0.0052760243, + 0.3186158, + -0.20285556, + -0.4246448, + -0.5065971, + -0.36871764, + 0.42008093, + -0.54002863, + 0.035855487, + -0.56036174, + 0.9715348, + -0.72711074, + -0.11933465, + 0.17599963, + -0.37107807, + 0.5310406, + 0.48053405, + -0.08195922, + -0.78175956, + -0.108498335, + 0.7756748, + 0.4468291, + 0.25742537, + 0.035793178, + 0.0035554757, + 0.7731381, + 0.10304962, + -0.23865217, + -0.337972, + -0.8189733, + 0.14016184, + 0.8605752, + 0.1363914, + 0.16039087, + -0.41394863, + -0.057093583, + -0.06232515, + 0.7868592, + 0.20244685, + -0.85527074, + -0.2606771, + 0.48995373, + 0.55873114, + -0.053843014, + -0.019733727, + -0.13253608, + 0.16025694, + -0.12921074, + 0.022719339, + -0.12619156, + 0.44088683, + -0.5671519, + -0.65806293, + -0.34070575, + 0.3698821, + -0.22962627, + -0.5194472, + -0.0284101, + 0.12610152, + -0.67653525, + 0.20872854, + -0.41981328, + 0.249547, + -0.1277569, + 0.24885663, + -0.32284462, + 0.16006531, + -0.24886334, + -0.23103642, + 0.45032248, + -0.79231477, + 0.2850191, + -0.14548573, + -0.6566731, + -0.24496591, + -0.13551025, + -0.38704324, + -0.41108757, + -0.0003241673, + -0.04101916, + -0.0011307895, + -0.11789107, + -0.7913196, + -0.08304617, + -0.70799804, + 0.19786467, + -0.9275097, + 0.5958527, + -0.80666864, + -0.13206866, + 0.5947203, + 0.32671863, + -0.3496442, + 0.5533649, + -0.42228603, + 0.46394956, + 0.18562002, + 0.29523668, + 0.50710195, + -0.22948986, + -0.3344014, + -0.111899376, + 0.3008162, + -0.24653645, + -0.5126609, + -0.08234543, + 0.17267883, + -0.12323693, + -0.5643302, + 0.35072038, + -0.16755128, + -0.5685056, + -0.9813149, + 0.2948984, + 0.33937857, + -0.19816555, + -0.306533, + -0.58143723, + -0.22303392, + -0.2509134, + 1.1124885, + -0.34379867, + 0.08716568, + 0.055686206, + -0.17339788, + -0.16729099, + -0.12716441, + 0.017370492, + 0.42775074, + -0.045530185, + 0.3254748, + -0.5094994, + 0.100215696, + 0.34401998, + 0.6213141, + 0.0108341575, + 0.70894206, + -0.1988382, + -0.01101217, + -0.113299936, + -0.6327567, + -0.2632358, + -0.10285909, + -0.06535933, + 0.681251, + 0.12828067, + 0.15590592, + 0.24346234, + 0.122101165, + 0.8090748, + 0.025901817, + -0.4887064, + -0.4159148, + 0.3001246, + 0.51187676, + -0.26578715, + 0.26167247, + -1.5781801, + 0.45581087, + -0.51067024, + 0.7073751, + -0.29669982, + -0.32992154, + -0.43740296, + -0.23325303, + -0.12463999, + -0.01037465, + 0.055422038, + 0.46942887, + 0.4644596, + -0.015622716, + 0.21669668, + 0.0573031, + -0.24976394, + -0.07605499, + 0.04587814, + 0.8279598, + 0.2975644, + 0.4455736, + -0.117177024, + -0.052683733, + 0.21125583, + 0.6036108, + -0.4378574, + 0.5107722, + 0.19120893, + 0.043761797, + 0.20458306, + -0.31662863, + 0.48874053, + -0.13602747, + -0.47485414, + 0.19994727, + -0.312807, + -0.44983178, + -0.45141423, + 0.44788036, + -0.3477727, + -0.1181467, + 0.19524536, + -0.019441947, + -0.095405936, + 0.10720865, + 0.6007551, + -0.2824139, + 0.18305546, + -0.69732183, + 0.40817776, + -0.07099596, + -0.022182705, + -0.122024536, + -0.024196964, + 0.47547343, + 0.09126125, + -0.1672443, + 0.12953918, + -0.5045597, + 0.46227032, + 0.59446704, + -1.551765, + 0.4131388, + -0.07268096, + 0.37230116, + 0.079812214, + -0.18075399, + -0.22539273, + -0.08400656, + 0.14249751, + 0.2572081, + 0.046214473, + -0.42892426, + 0.46022728, + -0.39611524, + 0.6970871, + -0.40454367, + 0.10736837, + 0.15173715, + 0.15598011, + -0.255634, + 0.0016957596, + 0.37074453, + 0.12440815, + 1.0132257, + -0.013694554, + -0.09050525, + -0.04648375, + -0.8504493, + 0.5081724, + 0.25721753, + -0.23344725, + 0.92064697, + -0.6537604, + 0.22294387, + -0.13713178, + 0.16590035, + -0.63912505, + 0.20920458, + -0.33213162, + 0.13087502, + 0.03194485, + 0.031574637, + -0.76765907, + -0.09173186, + -0.16789712, + -0.69131184, + -0.06913213, + 0.5756421, + -0.47524202, + 0.107453175, + 1.3646166, + 0.2096885, + 0.24497563, + 0.16178425, + 0.36681283, + -0.3121682, + -0.17732625, + 0.22922026, + 0.22630385, + 0.234889, + -0.19369096, + -0.19630367, + 0.25744185, + -0.18537268, + -0.6672444, + 0.47188827, + 0.45130843, + 0.03640152, + 0.31295303, + -0.7102008, + -0.1564802, + -0.15416583, + -0.39292356, + 0.52072287, + -0.00957511, + -0.47905475, + 0.26119015, + 0.19736001, + 0.22808824, + -0.39047927, + -0.455849, + 0.07960488, + 0.5003706, + 0.4089726, + 0.3464138, + -0.1989831, + 0.16873224, + 0.21303013, + -0.23393095, + 0.0734084, + 0.435848, + 0.113742806, + -0.41508466, + 0.016575836, + 0.5017845, + 0.51748013, + 0.15761884, + 0.021903943, + -0.5734821, + 0.12263529, + -0.4108019, + -0.32617596, + 0.38697782, + 0.77620715, + -0.6619588, + 0.00979235, + 0.36449206, + -0.74780244, + 0.15545239, + 0.07746806, + -0.59904474, + 0.28962734, + 0.17714363, + 0.5895293, + 0.3093986, + 0.08548464, + 0.68950427, + -0.13456768, + -0.42814308, + -0.465526, + -0.092843145, + 0.4028162, + -0.028710458, + 0.3738959, + 0.6982794, + -0.4850294, + 0.2857722, + -0.15335646, + -0.15160239, + -0.20414379, + 0.1414167, + 0.11310426, + 0.04523526, + 0.08995154, + -0.51725155, + -0.07837768, + -0.30278635, + -0.81921023, + 0.33299914, + 0.31480002, + 0.31408125, + 0.039849605, + 0.20794922, + 0.30409575, + 0.76190394, + -0.23421805, + -0.16115662, + 0.36700964, + -0.6088547, + -0.2560282, + -0.026402792, + -0.09622548, + 0.38715774, + -0.24864174, + -0.09255743, + -0.8971276, + 0.0250038, + -0.33841705, + -0.7341436, + -0.20492166, + -0.05222474, + -0.2908612, + -0.5069264, + 0.109158605, + -0.29438928, + -0.52790755, + 0.36002368, + 0.44034433, + -0.3418596, + 0.718213, + 0.61163914, + -0.2995443, + -0.24969979, + 0.51525414, + -0.13071056, + 0.3202031, + -0.38726315, + 0.24688151, + -0.43100375, + -0.5277069, + 0.29559344, + -0.51337284, + -0.17143762, + 0.038890734, + 0.40109956, + 0.17898476, + 0.041215964, + -0.45131287, + 0.3137059, + 0.21929216, + 0.29829434, + 0.14079571, + 0.17013955, + -0.63374656, + -0.23131835, + -0.08551267, + 0.020216592 + ], + "2025-05-20T11:45:04.681215", + "2025-05-20T11:45:04.681215", + 33.8139686584, + -34.307434082, + -109.8262557983, + "3", + "ID: 6062665
Cluster: 3
Chunk: .\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimme..." + ], + [ + 11724, + "Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x ) = (3x 2 - 4 , 2x )\n1 , 2 1 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\nH(x x ) = ( (6x , 0), (0, 2) )\n1 , 2 1\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\nH(x x ) -1 = ( (1\/(6x ), 0), (0, 1\/2) )\n1 , 2 1\n(d) F\u00fchren Sie eine Newton-Iteration durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .\n\n1,1 , 2,1 1,0 , 2,0\n(x x ) = (7\/6, 0)\n1,1 , 2,1\n53\u00dcbung 7.3.2\nWir suchen das Minimum der Rosenbrock-Funktion oder Banana-Funktion:\nMin f(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n(a) Berechnen Sie den Gradienten, die Hesse-Matrix und die inverse Hesse-Matrix der Rosenbrock-Funktion.\n\ngrad f(x x ) = ( 2(1 \u2013 x ) + 200(x - x 2) * (-2x ), 200(x - x 2) ) = ( 2 \u2013 2x - 400x x + 400x 3 , 200x - 200x 2 )\n1 , 2 1 2 1 1 2 1 1 1 2 1 2 1\nf = \u2013 2 - 400x + 1200x 2\n11 2 1\nf = - 400x\n12 1\nf = 200\n22\nH(x x ) = ( (f , f ) , (f , f ) )\n1 , 2 11 12 12 22\nD(x x ) = f * f - f 2\n1 , 2 11 22 12\nH-1(x x ) = ( (f , -f ) , (-f , f ) ) \/ D(x x )\n1 , 2 22 12 12 11 1 , 2\n(b) Stellen Sie damit die Newton-Iterations-Formel auf.\n\nBestimmen Sie kritische Punkte mit verschiedenen Startwerten.\n\n54\u00dcbung 7.4.1\nWir suchen die kritischen Punkte von f(x x ) = a * ( x 3 - 4 x + x 2 ).\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Es sei a = 1.", + 18240, + 3337970, + null, + "md", + null, + [ + 0.09867265, + 0.110687315, + 0.09900243, + 0.22945201, + -0.027438357, + 0.098105095, + -0.23619112, + 0.27377382, + 0.80790806, + -1.145435, + -0.26627803, + 0.27242467, + 0.25694075, + -0.17047393, + 0.0046548173, + 0.2255554, + -0.007440608, + 0.04724682, + 0.56931907, + -1.3216007, + -0.6276884, + -0.17996022, + 0.6398254, + 0.13847172, + -0.58847064, + -0.06526394, + -0.10131427, + 0.12976587, + 0.8434964, + -0.03662455, + -0.20036188, + 0.28603286, + -1.4435623, + -0.9208557, + -0.0061098896, + -0.22824594, + 0.7398138, + 0.6441138, + -0.042619955, + 0.6896371, + -0.89302886, + 0.020537592, + -0.14137584, + 0.50674224, + 0.71288526, + -0.21917081, + -0.6392732, + -1.0851569, + -0.57332474, + -0.20589787, + 0.39523393, + -0.008719478, + 0.4454067, + 1.352019, + 0.8446945, + -0.36210468, + -0.44550562, + -0.016562834, + -0.21319818, + -0.68944293, + 0.19527213, + 0.36691156, + -1.0501814, + -0.038548496, + 0.059387237, + 0.50824606, + 0.25185212, + 0.51780015, + -0.81442404, + -0.15639305, + -1.5384686, + 0.886126, + 0.8889318, + 0.1941032, + -0.3524245, + 0.28974527, + -0.3919926, + 0.25909588, + -0.71588165, + 0.7518678, + 0.18113251, + -0.5172051, + -0.2135939, + -0.7259023, + -0.22092365, + 0.09246122, + 0.6795689, + -0.0964835, + 0.48404092, + -0.16994947, + 0.25550818, + 0.16290641, + -0.48754448, + 0.90228325, + -0.3905873, + -0.7532856, + 0.052534103, + -0.62905145, + -0.30898964, + 0.597511, + 0.15935259, + 0.9325677, + 0.5468651, + -0.07853602, + -0.7338609, + -0.3720457, + 0.039052363, + 0.09948737, + 0.21655971, + -0.14990564, + 1.0139805, + -0.3625022, + -0.0769975, + -0.22897094, + 0.10361455, + 0.4366969, + -0.5844264, + 0.22067347, + -0.35036597, + -0.3091964, + 0.6309018, + -0.97356504, + 1.0198308, + -0.01332613, + 0.4018996, + 0.4596646, + 1.0029926, + -0.953895, + -0.49996358, + 0.81756604, + -0.047458682, + 0.7188242, + 0.1741947, + -0.33094823, + -0.018873055, + -0.09688342, + 0.5864333, + 0.07713671, + 0.27733165, + -0.8468182, + 0.0058958456, + -0.6351061, + -0.6951874, + -0.44188684, + 0.8392646, + -0.38283327, + 0.5365428, + -0.7132146, + 0.381787, + -0.98611283, + 0.20805097, + -0.30635375, + -0.022463217, + -0.5851508, + 0.011305369, + 1.2283957, + 0.29369527, + 0.55758435, + -0.65065026, + -0.17258045, + 0.026285194, + 1.0469778, + -0.31926504, + -0.93676466, + 0.22036074, + 0.20531648, + -0.18193376, + 0.022729516, + 0.60301185, + -0.62440675, + 0.7517875, + 0.05332236, + -0.63979113, + -0.2312608, + -0.28119862, + 1.0172596, + 0.423002, + -0.60617286, + -0.082288235, + 0.4750282, + 0.29937342, + 0.64687127, + 0.12053876, + -0.7605794, + 0.18441123, + 0.12039928, + -0.43902045, + 0.030971423, + 0.023730263, + 0.5291866, + -0.14559428, + 0.086846314, + -0.6367214, + -0.351496, + 0.77415675, + -0.8972367, + 0.1373828, + -1.1501211, + -0.5072923, + 0.4559797, + 0.8680921, + 0.109660655, + 0.2347815, + -0.39081255, + -0.2860189, + 0.11794658, + -0.35708064, + -0.52179784, + 0.31262854, + 0.64121985, + 0.3992297, + -0.017667111, + 0.13086972, + 0.10269937, + -0.6367594, + 0.74641645, + -0.46381956, + 0.34287623, + 0.22562303, + -0.83569485, + 0.5072873, + 0.15824407, + 0.2516959, + -0.07341275, + -0.055763498, + -0.03743699, + -0.41779023, + 0.37540737, + -0.122679844, + 0.16157515, + -1.3832797, + -0.2555948, + 0.6092596, + -0.18214805, + -0.09976715, + 0.72257966, + 0.5831122, + 0.32459548, + 0.30583316, + 0.6776415, + -0.072715156, + -0.16565916, + 0.25940114, + -0.09497604, + -0.031302974, + 0.24850427, + -0.28234887, + 1.087359, + 0.041934676, + 1.1430496, + 0.36711502, + -0.2118273, + 0.19471383, + 0.57132405, + 0.40106648, + 0.25625247, + -0.10451258, + -0.5140797, + -1.0416801, + -0.8525772, + -0.34237617, + -0.30827492, + 0.36429378, + 0.20208435, + -0.32087877, + 0.72047895, + 0.29676986, + 0.060800962, + -0.057341106, + 0.15027753, + 0.12746187, + -0.29868138, + 0.7273164, + 0.42307875, + 0.060233243, + 0.07040104, + 0.1956526, + 0.20226702, + -0.3010223, + -0.7040386, + 0.59733295, + -0.5988953, + -0.61916137, + -0.59246016, + -0.21354197, + -0.082070306, + 0.062992066, + 0.1869354, + 0.9035603, + -0.45357558, + -0.19496956, + -0.7579504, + -0.42571357, + 0.2326057, + 0.16807349, + -0.17078543, + 0.5340854, + 0.049368024, + 0.19567993, + -0.43750215, + 0.85336375, + 0.7968932, + 0.6000461, + -0.21160668, + 0.022086024, + 0.5603159, + 0.024495777, + -0.87153345, + -1.1130608, + 0.21840627, + -0.30729377, + 0.11430499, + 0.41008744, + -0.09583238, + -0.3387219, + 0.25293368, + 0.124375165, + -0.35454127, + -0.41393188, + 0.62762606, + 0.14656812, + 0.36614552, + 0.84323794, + -0.74738854, + 0.084767215, + 0.20013428, + 0.7105891, + -0.49647114, + -1.1256988, + -0.0351355, + 0.13080926, + 0.29849023, + 0.34973088, + 0.9473583, + -0.14931956, + 0.103675455, + -0.5996921, + 0.5076246, + -1.1760892, + 0.37189907, + 0.24640553, + 0.074896485, + -0.7301519, + 0.5963416, + -0.4245016, + -0.3389464, + 0.60895747, + -0.46614942, + -0.49710497, + 0.20962489, + -1.0426294, + 0.2872895, + 0.4374295, + -0.77460456, + 0.48572594, + -0.11683272, + 0.24167877, + 0.3531498, + 0.6154695, + 0.110942736, + -0.086129256, + -0.3053316, + 0.14046031, + -0.9618248, + -0.6638855, + -0.43790448, + -0.16429031, + 0.7572856, + 0.06467402, + 1.1106212, + 0.12235008, + 0.4252285, + 0.41337997, + -0.07815869, + -0.11060463, + -0.017809942, + -0.35264122, + 0.9101371, + -0.33808795, + -0.10384929, + 0.44703686, + -0.551257, + 0.57970846, + 0.09262912, + 0.34195668, + 0.2234929, + 1.9648614, + -0.5446885, + 0.4880285, + -0.15534586, + -0.76321065, + 0.1703878, + 0.054060005, + -0.22604841, + 0.07696145, + -0.04604319, + 0.2906676, + 0.34214324, + 0.6001811, + -0.24069779, + -0.34061906, + 0.04339627, + -0.20146337, + -0.39078578, + -0.5047984, + 0.27993983, + 0.29602927, + -0.9045856, + -0.35371536, + 0.16146418, + 0.029872209, + -0.20257798, + 0.08453064, + -0.031050116, + -0.054522812, + -0.1937195, + -0.014151845, + 0.31501135, + 0.025905792, + 0.68801844, + 0.14908266, + 0.5094029, + -0.7902131, + 0.10568984, + 0.5294051, + -0.44659534, + 0.007424308, + -0.392659, + -0.431634, + -0.07916853, + 0.44436738, + 0.24379162, + 0.074617855, + 0.32943055, + 0.21191595, + -0.54157305, + 0.90286595, + 0.24486008, + -0.25633365, + -0.36245328, + 0.0059990063, + -0.14365603, + -0.9431555, + 0.71917295, + -0.7188447, + -0.34926623, + -0.31750152, + 0.2030716, + 0.6465947, + 0.8415656, + 0.5337228, + -0.2984532, + -0.43673453, + 0.11565148, + -0.6426203, + -0.121937096, + -0.16331066, + 0.15391085, + -0.28765538, + -0.40217626, + -0.09640377, + -0.6627671, + -0.10850626, + 0.15621935, + 0.1021995, + -0.4269496, + -0.20614898, + -0.36030325, + -0.07327028, + -0.28213018, + -0.040075917, + -0.32915586, + -0.9247641, + -0.3423927, + -0.1286877, + -0.8201297, + 0.013400342, + -0.13046214, + -1.1800265, + 0.2850166, + 0.039527092, + -0.070888095, + 0.5222611, + -0.26985842, + -0.5107282, + 0.23903611, + 1.422034, + 0.59356016, + -0.0804681, + 0.07651371, + 0.47739923, + -1.4049715, + 0.057487257, + 0.65835726, + 0.012012005, + -0.83520705, + 0.14005867, + 0.3179408, + 0.09793091, + 0.43227002, + 0.24015082, + -0.74180096, + 1.2195641, + 0.27990267, + 0.20510876, + -0.26877096, + -0.023211706, + 0.031025935, + -0.7453047, + 0.43501896, + -0.45996207, + -0.14313409, + 0.13326743, + 0.122960486, + 0.72335243, + 0.6529524, + -0.59417254, + 0.5511575, + -0.606183, + -0.08331241, + -0.047018968, + 0.20930567, + 0.53218025, + -0.53194004, + -0.8049671, + -0.30903393, + -0.5984673, + -0.87982637, + 1.162206, + 0.71807724, + -1.0396767, + 0.38749945, + 0.9213603, + -0.054405376, + -0.47395605, + -0.42909703, + 0.17345208, + -0.13005951, + -0.91845477, + 0.28418788, + -0.6736643, + 0.21831436, + 0.26330477, + 0.40875673, + -0.636742, + 0.08652145, + -0.21403389, + -0.52358896, + 0.033423707, + -0.18996708, + -0.29703385, + -0.30813947, + 0.35787016, + 0.44168937, + 0.31971094, + 0.7259261, + -0.3958075, + -0.3152674, + 0.49230948, + 0.0063293837, + 0.20789315, + -0.001784265, + 0.29177412, + -0.7019365, + 0.30329597, + -0.38417867, + -0.029093584, + -0.30668706, + 0.31243366, + 0.4280067, + -0.6526408, + -0.06755851, + -0.53404266, + 0.013171971, + 0.88783205, + 0.1785952, + 0.19072059, + 0.78968906, + 0.3790344, + 0.27641153, + -0.70200235, + -0.3149432, + -0.6056072, + -0.84975773, + -0.18786192, + 0.32024395, + 0.19375575, + 1.1661772, + 0.15194057, + 0.36783332, + 0.79111534, + -0.32413408, + -0.051064067, + 0.17450851, + 0.5964902, + -0.37797788, + -0.21126439, + 0.022742009, + -0.048503, + -0.18102294, + 0.0601886, + -0.703537, + 0.66364837, + -0.2881683, + -0.108233154, + 0.27691418, + 0.33392403, + 0.11869593, + -0.5493283, + -0.0894763, + -1.294402, + -0.3414066, + -0.27450776, + -0.51224303, + 0.13566503, + 0.07402909, + -0.049980983, + -0.83780164, + -0.0890995, + -0.70201594, + 0.13779654, + 0.5264545, + 0.5073055, + -0.21666935, + -0.39014325, + 0.31095043, + -0.7438618, + 0.29784217, + 0.69888926, + 0.017548501, + 0.4117448, + 0.32664767, + 0.32981226, + 0.078561135, + -0.19950867, + -0.002681531, + 0.102622524, + -0.12783173, + 0.54124886, + 0.6291374, + -0.12358592, + 0.32964104, + 0.13895114, + 0.19255789, + -0.12321177, + 0.52333534, + 0.34103125, + 0.16730158, + 0.058574907, + 0.12774754, + 0.42483726, + -0.08132103, + -0.3200609, + -0.7567713, + 0.41511407, + 0.1708309, + 0.1025504, + -0.48109135, + 0.19218239, + -0.38762102, + -0.102074854, + -0.7044278, + 0.56144935, + 0.12716034, + 0.27252367, + -0.2139098, + -0.066363454, + -1.1736205, + -0.2802698, + -0.22540188, + 0.21006158, + 0.17829902, + 0.72439, + 0.21021278, + 0.35163194, + -0.056796525, + -0.1269753, + -0.18157396, + -0.71756333, + 0.031683877, + -0.3434423, + -0.598749, + 0.14107509, + -0.29693985, + -0.43832842, + -0.059731647, + 0.08904247, + 0.61394, + -0.0838373, + -0.65991485, + -1.2238059, + 0.23648846, + 0.03387013, + 0.11243858, + 0.023466371, + -0.09593597, + -0.6864304, + 0.18768376, + -0.17367233, + 0.28258383, + 0.43573853, + -0.24848267, + 0.017208412, + -0.046796765, + 0.018522283, + 0.021396523, + 0.09836509, + 0.025008135, + -0.40591666, + -0.24485458, + 0.074191056, + -0.3331389, + -0.34930742, + -0.026469618, + -0.41349953, + -0.2227197, + -0.20958076, + 0.14334382, + 0.07906173, + -0.22607258, + -0.47139344, + -0.75067025, + 0.17725228, + -0.2102774, + 0.016074236, + -0.5525872, + -0.34262723, + -0.2441841, + 0.49715126, + -0.5536491, + -0.18942142, + -0.08239488, + 0.10202718, + -0.49043137, + 0.88622165, + -0.9687871, + -0.002789721, + -0.08630055, + 0.22932094, + 0.36614913, + 0.14315657, + 0.1538178, + 0.5969062, + -0.19250105, + -0.15922464, + -0.2787053, + -0.17668377, + -0.7815433, + -0.30326504, + 0.22024523, + 0.24654049, + -0.17198735, + 0.08279521, + -0.16834009, + 0.043088797, + 0.4947298, + 0.48330033, + 0.04125823, + 0.5718062, + 0.03208746, + -0.32252723, + 0.16103064, + 0.018203441, + -0.6684262, + 0.63778114, + -0.6551296, + 0.42231315, + -0.27447233, + 0.36926755, + 0.089495815, + -0.055379987, + -0.27263555, + -0.02256975, + -0.08435048, + 0.6765057, + 0.23670562, + -0.13063307, + -0.048927642, + -0.47157368, + 0.3965791, + 0.23284623, + 0.37888426, + -0.51772463, + 0.019191451, + -0.09482032, + -0.27823257, + 0.35757717, + -0.23356418, + 0.23155713, + -0.46556854, + 0.16885874, + -0.2880992, + 0.4973876, + -0.29026052, + -0.21655911, + 0.062124982, + -0.20573136, + 0.2527937, + -0.13039246, + -0.7937051, + -0.26568645, + 0.35998383, + -0.30379876, + -0.8802005, + 0.3547319, + -0.12155091, + -0.3424648, + 0.45667523, + -0.35960063, + -0.11347298, + 0.08070199, + -0.14447361, + -0.22475232, + 0.49468458, + -0.98781097, + -0.032633085, + -0.113064155, + 0.3326771, + 0.083323255, + 0.5740593, + 0.6151245, + 0.14748676, + -0.4625596, + 0.054103106, + 0.00612098, + -0.21667904, + 0.47247708, + -0.15249538, + 0.39002776, + 0.5042389, + -0.38091004, + -0.28585204, + 0.41349906, + -0.038335636, + -0.31172526, + 0.8728566, + 0.22483101, + -0.12816137, + 0.38061374, + -0.10367331, + 0.0602383, + 0.086044684, + -0.69242626, + 0.011308499, + -0.38706124, + 0.20421976, + -0.5877696, + -0.31531242, + 0.10545086, + -1.2100762, + 0.09915966, + 0.6324105, + 0.08729786, + 0.57330364, + -0.5215086, + -0.023544872, + -0.36918288, + -0.04798453, + 0.28496733, + 0.31171122, + -0.3304602, + 0.31413037, + 0.086523265, + -1.4346424, + 1.0745457, + 0.84248215, + -0.0027363896, + 0.4413573, + 0.011791632, + -0.5304562, + -0.037899002, + 0.34071118, + 0.06376809, + -0.10315236, + 0.2645282, + -0.6132711, + 0.17895767, + 0.5851486, + 0.13757055, + 0.40451694, + 0.14378902, + -0.2434611, + -0.27724555, + 0.80522466, + 0.0649, + 0.25204164, + 0.02592846, + -0.6843663, + 0.078876175, + 0.0043817125, + 0.38159028, + -0.021487236, + -0.5737401, + 0.103462696, + 0.0543036, + 0.2914808, + -0.41305095, + -0.32963157, + 0.2098634, + 0.056027137, + -0.47111607, + -0.36654764, + 0.14456964, + -0.5093298, + 0.8900198, + -0.19305447, + -0.96117336, + 0.18935205, + -0.928981, + 0.7716763, + 0.7662021, + 0.6457118, + 0.09260677, + 0.106472135, + -0.08434531, + 0.5028472, + 0.78250176, + 0.16174524, + -0.2380994, + 0.1886342, + -0.21258155, + 0.98121953, + 0.34688097, + 0.18625589, + 0.26240742, + -0.73515314, + 0.028863348, + -0.38860252, + -0.64968395, + 0.3433439, + -0.18288556, + -0.16227485, + -0.39645657, + 0.349998, + -0.48563296, + 0.1079644, + 0.9155354, + -0.8223966, + 0.19088572, + 0.1950828, + 0.49994946, + 0.27959555, + 0.49863058, + 0.9417961, + 0.5702498, + -0.47985402, + 0.6176149, + 0.45039696, + 0.09334664, + -0.44177893, + 0.0019241218, + 0.27819854, + -0.31018457, + 0.34964728, + 0.18240361, + -0.44426134, + -0.032785863, + -0.48240745, + 0.6133015, + 0.10592939, + -0.12046972, + 0.05160539, + 0.3552714, + -0.09037112, + -1.068445, + 0.14118654, + -0.64814055, + 0.25556, + 0.38207415, + 0.0035322309, + 0.16964313, + 0.677953, + 0.23014174, + 0.24658106, + -0.11267711, + -0.55447507, + -0.119067684, + 0.54224116, + 0.31565383, + 0.5244208, + -0.83387357, + 0.40948436, + -0.3378592, + -0.33543268, + 0.042933535, + 0.104173556, + -0.6271039, + 0.21138573, + 0.38814163, + -0.09056228, + -0.3124646, + -0.30543572, + -0.12258975, + 0.16647546, + -0.1406545, + 0.8662054, + 1.0453173, + 0.5223655, + 0.14587998, + -0.95245034, + -0.39321125, + -0.11832072, + 0.45038953, + 0.18365487, + -0.20192692, + -0.46909228, + -0.16791905, + 0.13341409, + -0.2960372, + 0.17926578, + -0.8761651, + 0.19807526, + 0.041413892, + -0.13154015, + -0.33472893, + 0.20185846, + 1.0542618, + 0.17828444, + 0.09722105, + -0.4392705, + 0.0077023515, + 0.17092955, + 0.34391454, + 0.5730579 + ], + "2025-05-20T11:43:49.649391", + "2025-05-20T11:43:49.649391", + -25.5066947937, + -14.3198242188, + 103.6369628906, + "4", + "ID: 3337970
Cluster: 4
Chunk: Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\nL\u00f6sung (0.5; -0.5)\n52\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\ngradf(x x..." + ], + [ + 11726, + "Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Quasi-Newton-Methoden),\ndeswegen nur f\u00fcr kleine N<=5 anzuwenden.\n\n\n\n\uf0fe Constraints k\u00f6nnen \u201enicht wirklich\u201c abgebildet werden.\n\n\uf0fe Wahl des Startsimplex hat Einfluss welches lokale Minimum\ngefunden wird\n\uf0fe Wahl des Startsimplex beeinflusst Konvergenz\n\uf0fe Fehlender Konvergenzbeweis\n\uf0fe Z.B. Stagnation um nicht-optimalen Punkt\n\uf0fe rauschempfindlich7.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill-Simplex mit Zielfunktion mit additivem Rauschen s:\nMin [ f(x) + s ], x in RN\nBeispiele\n\uf0fc Double Precision Numerik: \u03c3 \u2248 10-16,\ns\n\uf0fc FEM-Simulation: \u03c3 \u2248 10-3 - 10-6.\n\ns\nBest-Practice\n\uf0fc Anwender (Sie!)\n\nm\u00fcssen das Rauschlevel kennen.\n\n\uf0fc Toleranzen (ftol, xtol) an das Rauschlevel anpassen.\n\n257.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nNichtlineare Regression mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.2\nNichtlineare Gleichungen l\u00f6sen mit Downhill-Simplex \uf0e0 \u00dcbung 7.2.3\nSchnittpunkte zweier Kreise:\n- M1: Kreis um (1,2) mit Radius 3,\n- M2: Kreis um (2,0) mit Radius 2.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\n267.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nIhre Aufgaben ist es einen Satelliten am Ort (x,y) so zu\npositionieren, dass er sich im Gravitationsfeld der 3\nM3 M1 Planeten nicht bewegt.\n\n(a) Optimierungs-Problem aufstellen.\n\n(b) Gute Startpunkte bestimmen.\n\n(c) L\u00f6sen mit Downhill-Simplex.\n\nM2\n277.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 2 linearen\nUngleichheitsbedingungen\nMin [ x 2 + x 2 ]\n1 2\nx + x \u2265 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n287.", + 18240, + 16414826, + null, + "md", + null, + [ + -0.8539323, + -0.3307703, + -0.12917906, + -0.9902739, + -0.6676355, + 1.2118105, + 0.029592108, + 0.22852649, + -0.17469743, + -0.2932766, + -0.4693811, + -0.11940551, + 0.7137473, + 0.2901251, + 0.11043404, + 0.908476, + 0.36449328, + 0.45342174, + 0.025286831, + -0.7366027, + 0.21817313, + 0.121300094, + -0.063033216, + 0.6805244, + -0.056355156, + 1.1634629, + -0.07685873, + 0.15959877, + 0.50525665, + 0.29150793, + -0.25445172, + -0.6690671, + -0.20523512, + -0.82977104, + 0.3563352, + -0.22521439, + -0.055333816, + 0.10446757, + -0.66474366, + 0.2739571, + -1.2048552, + 0.71865845, + 0.7710559, + -0.5285966, + -0.37474403, + 0.62919843, + 0.21234348, + -0.8845423, + 0.34341902, + -0.5314544, + -0.55283594, + 0.5398582, + 0.1483026, + 0.08643797, + 1.0448908, + -0.6574854, + -0.052272893, + -0.17243429, + 0.1937595, + -0.26126102, + 0.0018535145, + -0.3073746, + -0.41983935, + -0.18200193, + 0.38417354, + 0.16707216, + 0.24584267, + -0.587863, + 1.2997599, + -0.10888686, + -0.060016632, + -0.08661074, + 0.267574, + -0.704792, + -0.4264942, + 0.056719884, + 0.33332884, + -0.05404637, + 0.030310921, + -0.66497105, + -0.13663104, + -0.15877385, + -0.57147807, + -0.20301479, + -0.04582368, + 0.14640829, + 0.12857454, + 0.25900522, + 0.4936216, + -0.8481777, + 0.28817445, + 0.064124696, + 0.308181, + -0.18608971, + 0.57060826, + 0.3012161, + -0.37862927, + -0.48801196, + 0.7178086, + -0.17961763, + -0.40522397, + 0.6990168, + 0.0657973, + -0.11710049, + -0.0011175182, + 0.12663013, + -0.5562408, + 0.29009256, + -0.41211224, + 0.10546668, + 0.30870074, + -0.9476551, + -0.25377896, + 0.046802565, + 0.516503, + -0.4708044, + -0.6607292, + 0.14340347, + -0.008903671, + -0.13664433, + 0.62353945, + 0.62722576, + 0.40940917, + -0.48435742, + 0.3643537, + 0.34011084, + 0.35744524, + -0.1707079, + -0.47676253, + -0.027979672, + -0.20821664, + 0.7428249, + 0.27519116, + -0.30784094, + 0.17479691, + -0.014693338, + 0.1411259, + 0.39841288, + 0.79728043, + -0.3491399, + -0.40213922, + -0.023051064, + -0.7960245, + -1.1290884, + 0.8073704, + -0.10773207, + 0.5747593, + 0.5743768, + -0.012330806, + -0.18897803, + -0.29474765, + -0.28917527, + -0.22540466, + 1.1526271, + -0.26830465, + 0.31087938, + 0.57019883, + 0.50171554, + 0.27794668, + -0.33585072, + -0.46899793, + -0.15659447, + -0.3947235, + 0.55163974, + 0.31508547, + 0.11217903, + -0.048128955, + 0.4202875, + 0.9236831, + -0.6605115, + 0.05304746, + 0.15674524, + 0.41011816, + -0.37552556, + -0.33173123, + 0.6716921, + 0.2558303, + -0.4818378, + 0.18594816, + 0.0007131919, + 0.41329402, + 0.17399296, + -0.47084534, + -0.17998151, + -0.34639797, + -0.013318166, + 0.56613696, + -0.5874696, + 0.20158185, + 0.775353, + -0.25868744, + 0.4274549, + -0.077302046, + -0.12218476, + -0.35930172, + 0.38415802, + -0.5625155, + -0.25774255, + -0.7325902, + -0.07573832, + 0.4881325, + -0.17410725, + 0.113852486, + -0.51690894, + -1.1485411, + -0.13748063, + 0.07226144, + -0.438347, + -0.6821974, + 0.28296417, + 0.15697421, + -0.76283795, + 0.10213634, + 0.13776281, + -1.0331091, + 0.2651925, + -0.3273425, + -0.32598922, + -0.89425045, + 0.42123505, + 0.3685753, + -0.2249591, + -0.11343601, + -0.13806412, + 0.1803881, + -0.035908714, + 0.11074939, + 0.35891697, + 0.24697809, + 0.67905563, + -0.46093196, + -0.0006635301, + -0.93066126, + -0.5365966, + -0.70628923, + -0.02438766, + 0.49086237, + 0.97896796, + -0.3070281, + -0.22930408, + 0.08843623, + -0.16792898, + -0.13884707, + 0.19552639, + -0.0054828264, + -0.47570893, + 0.1002188, + -0.18127248, + -0.1659772, + -0.029073749, + 1.0081661, + -0.7932603, + -0.1398586, + 0.43807134, + 0.055818368, + 0.10311201, + -0.3436117, + 0.43811664, + -0.3337317, + -0.4697453, + -0.09803013, + 0.050909538, + 0.6488485, + 0.4691379, + -0.07474828, + 0.51605666, + 0.021235768, + -0.20607299, + -0.03636157, + 0.37672293, + -0.6621385, + -0.39643347, + 0.0284052, + 0.011475243, + -0.38171962, + 0.10258137, + -0.42724732, + 0.3204122, + -0.38582945, + 0.022227645, + 0.53133196, + -0.038270857, + 0.019247912, + -0.5201451, + -0.096027754, + 0.63741094, + -0.4234219, + 0.11903067, + 0.30968446, + 0.7273011, + -0.09628929, + 0.2104124, + 1.7123475, + 0.29152635, + -0.39565703, + 0.4309969, + 0.27129102, + 0.027772307, + -0.012917746, + -0.13817286, + 0.21852678, + 0.4427994, + 1.0466827, + 0.24490747, + -0.13999616, + 0.29003304, + 0.29087174, + 0.31205013, + -1.1982964, + 0.5554931, + -0.3398022, + -0.24828468, + 1.0044819, + -0.018342126, + 0.12007397, + 0.22041944, + 0.16844928, + -0.03415539, + -0.122829184, + -0.0946976, + -0.22604668, + 0.36866996, + -0.48646772, + -0.5032041, + -0.54520965, + -0.039527424, + 1.1881297, + -0.75655437, + -0.36670423, + 0.46194798, + -0.7714345, + 0.10680521, + 1.0212977, + 0.64594954, + -0.1603657, + -0.75962853, + 0.088238984, + 0.12746783, + -0.34640595, + -0.111966506, + -0.5498046, + 0.47423226, + 0.6737331, + 0.81994224, + -0.15194172, + -0.9810642, + 0.6281481, + 0.2638703, + 0.34571162, + -0.07662763, + 0.08777786, + 0.089661, + -0.2738688, + -0.02496216, + 0.08768957, + -0.025267363, + 0.4369758, + -0.3054504, + -0.7089642, + -0.052577622, + -0.36445695, + -0.31912082, + 0.029207751, + 0.2231015, + -0.05916048, + 0.32243025, + 0.09068123, + 0.25242484, + -1.0004787, + -0.4810502, + -0.4497958, + -0.17003125, + 0.19690004, + 0.46112937, + -0.70414835, + -0.954975, + -0.531729, + 0.23604356, + -0.17421484, + 0.5195362, + 0.32563728, + -0.6052952, + -0.034563992, + 0.6952429, + -0.12622835, + 0.3757859, + 2.210436, + 0.05575467, + -0.21591124, + 0.48180717, + -0.24929328, + -0.009028427, + -1.0700771, + 0.9492843, + -0.4551821, + -0.11906175, + 0.011096896, + 0.23998976, + 0.5420355, + -0.541951, + -0.11319184, + 0.33359554, + 0.0067634284, + -0.17258698, + -0.25769466, + -0.11171642, + -0.053563103, + 0.3705832, + 0.2992101, + -0.18909258, + 0.32066053, + 0.06419146, + 0.33446407, + -0.14366686, + 0.5514692, + -0.2767424, + -0.011084981, + 0.74445415, + 0.04612382, + 0.024323262, + 0.49389562, + 0.12573642, + 0.09823174, + 0.21492262, + 0.09247469, + -0.18888505, + -0.29879305, + -0.19315186, + -0.15440288, + -0.063416995, + 0.30787528, + -0.38133115, + -0.6392689, + 0.4884597, + -0.21302314, + 0.14290631, + 0.22060981, + -0.17246923, + 0.5647294, + -0.952493, + 0.27725315, + -0.4761065, + 0.20459834, + -0.9706806, + 0.18279941, + -0.16547751, + -0.29651493, + 0.9360133, + -0.29710135, + 0.30295104, + 0.021210246, + 0.1265139, + -1.025202, + -0.00423479, + -0.32674876, + -0.0045534503, + 0.012643382, + -0.17434269, + 0.82136047, + 0.20685478, + -0.17122549, + -0.23198067, + 0.038438853, + -0.020254105, + 0.2264987, + -0.5891883, + 0.41899672, + 0.47540382, + 0.09821603, + -0.6208373, + -0.05333429, + -0.30125338, + 0.6349436, + 0.3263192, + 0.17828625, + -0.5503541, + -0.20873262, + 0.13530502, + -0.28734863, + -0.012235507, + 0.6608583, + 0.43597317, + 0.23524818, + -0.7935008, + 0.66546136, + -0.35884187, + -0.12345234, + 0.1361944, + -0.82158834, + -0.09604049, + 0.31083137, + -0.27783045, + 0.2291076, + -0.14838076, + 0.10377172, + -0.8920105, + -0.16834962, + 0.32825252, + 0.35769495, + 0.21138068, + -0.36266732, + -0.6994964, + 0.59414804, + -0.18047675, + 0.8896697, + -0.932381, + 0.41734526, + -0.22673348, + -0.3478503, + -0.82368726, + 0.37821192, + 0.23006038, + 0.56045026, + 0.15717992, + 0.18756339, + 0.4392076, + 0.37728527, + 0.74689555, + 0.2711612, + -0.0107919015, + 0.4081654, + -0.2302883, + -0.6257982, + -0.3955772, + 0.0720519, + -0.23252282, + -0.30029458, + -0.1256409, + -0.033585265, + -0.2892841, + -0.7019023, + 0.21407972, + 0.4948519, + -0.34811056, + -0.35162103, + 0.5198878, + -0.5156027, + -0.054893225, + -0.5352376, + -0.3290039, + 0.0044410303, + 0.15053213, + 0.51284194, + 0.68666065, + 0.16754827, + -0.20434666, + 0.61329836, + -0.37491137, + 0.13694091, + -0.25655106, + -0.5891634, + -0.6456966, + -0.20287995, + 0.07054655, + -0.41948473, + -0.82718194, + -0.02633674, + -0.32714024, + 0.14060801, + -0.224685, + 0.30559784, + 0.0027803853, + 0.23669116, + -0.35289177, + 0.8975639, + -0.21738997, + -1.0228249, + 0.07177607, + 0.027710877, + 0.48485088, + -0.56254023, + -0.25009972, + -0.055140972, + -0.29248986, + 0.5119693, + 0.7629399, + 0.21801546, + 0.22889154, + 0.24045353, + 0.042715732, + -0.81041133, + 0.36119652, + 0.15088333, + -0.23406988, + 0.8263721, + 0.10161446, + -0.0286174, + -1.013361, + 0.0003558434, + -0.094068766, + 0.1915522, + 0.009240007, + 0.16866004, + 0.122570336, + -0.26186597, + -0.2552872, + -0.015016392, + 0.08968281, + -0.36750963, + -0.042740975, + 0.13635609, + 0.14577833, + -0.0018900186, + -1.0160899, + 0.036228113, + 0.0360646, + 0.13371255, + 0.22093202, + -0.18241423, + 0.13462572, + -0.21801919, + -0.6632644, + 0.026182778, + 0.31401616, + 0.24546833, + -0.34779152, + 0.040351465, + 0.34583205, + 0.054369178, + 0.055393714, + 0.08294205, + 0.4134052, + 0.081470616, + 0.14861283, + 0.27115917, + 0.18866162, + 0.16845837, + -0.021494392, + 0.099451095, + 0.07424253, + 0.95509243, + -0.25892913, + 0.25775316, + 0.38492036, + -0.013016466, + 0.24116403, + -0.13615704, + 0.05505497, + 0.34371993, + 0.23904353, + -0.026003577, + -0.7104476, + 0.19803251, + 0.26665705, + -0.8165034, + 0.35992035, + -0.16680469, + -0.12579165, + -0.25848532, + 0.333437, + 0.025177982, + 0.54053015, + -0.22570892, + 0.09275298, + 0.25448912, + 0.13054141, + -0.2504904, + 0.65355086, + 0.111077905, + -0.89662915, + -0.18503861, + -0.1598213, + 0.09600135, + 0.07544291, + 0.17908715, + 0.45135447, + -0.014711715, + -0.2550139, + -0.17830606, + 0.074247524, + 1.2081397, + -0.46689355, + 0.83391845, + -0.0044292435, + 0.059199993, + 0.020237623, + -0.29666564, + 0.25264922, + -0.7275058, + 0.5693076, + -0.42580548, + -0.5936979, + -0.23509559, + 0.3380488, + -0.21339679, + -0.8561462, + -0.010283865, + 0.27283502, + -0.28172326, + -0.45496535, + -0.60595846, + 0.26207897, + -0.16874057, + 0.5199169, + -0.47076005, + -0.010878742, + -0.21448271, + -0.35704887, + 0.35907978, + 0.012331411, + -0.4195977, + 0.45830023, + -0.712868, + 0.090470836, + -0.37428328, + -0.6885767, + 0.17281593, + 0.71904624, + -0.6291649, + 0.027349655, + 0.63686544, + 0.26528955, + -0.6863695, + 0.4341926, + -0.25721896, + 0.35229698, + -0.9061378, + 0.13891628, + 0.0949385, + -0.07906965, + -0.708987, + -0.5152282, + 0.99203545, + -0.69226795, + -0.13550156, + -1.044257, + 0.1306884, + -0.43655202, + 0.072960645, + -0.15455963, + 0.3981174, + 0.09782165, + 0.43952686, + -0.5311164, + 0.018301092, + 0.06927353, + -0.07306424, + -0.46071357, + -0.21516946, + 0.4504313, + 0.3953615, + -0.25762764, + 1.3180257, + -0.6727208, + 0.24842943, + 0.5909595, + 0.20929565, + -0.31214345, + -0.8138272, + 0.2508304, + -0.14077395, + 0.09348574, + 0.4390254, + -0.06093407, + -0.31585816, + 0.47952282, + -0.026074342, + 0.33190444, + 0.25328937, + -0.04103063, + -0.4574495, + 0.32518375, + -0.09280743, + -0.4933892, + 0.3822643, + -0.96908087, + -0.06862748, + 0.25046936, + 0.122330815, + 0.012352629, + -0.6950765, + -0.010044392, + -0.510493, + 0.22464427, + -0.031305045, + 0.60303587, + -0.041433718, + 0.49063748, + -0.23677336, + -0.42168263, + 0.17090912, + -0.115027994, + -0.36493713, + 0.4284914, + 0.61894584, + 0.8096411, + 0.25358936, + -0.06364979, + 0.5419338, + -0.355439, + 0.14945783, + -0.52066106, + -0.10302207, + -0.17608032, + 0.30358034, + 0.13875003, + -0.92178655, + 0.47635734, + -0.27064168, + -0.09240817, + 0.16573635, + 0.098099686, + -0.53834814, + -0.16004665, + -0.14474769, + -0.15828626, + 0.17819116, + -0.19228017, + -0.2808586, + -0.26726532, + -0.0784762, + 0.46395785, + -0.06449352, + 0.9677993, + 0.5073941, + -0.06740641, + -0.23361844, + -0.12698081, + -0.3789773, + -0.35317147, + 0.079996295, + -0.23919804, + -0.4674, + 0.29450154, + 0.6108493, + 0.7914115, + 0.38596317, + -1.7401052, + 0.14437976, + -0.116127826, + -0.8036505, + 0.35684612, + -0.48441285, + -0.52011204, + 0.012298875, + 0.5166489, + -0.16617712, + 0.24665621, + -0.71546894, + 0.08881588, + -0.34679535, + -0.20071504, + -0.15859972, + 0.23782808, + -0.30312216, + 0.68573743, + 0.042305555, + 0.73770624, + 0.5338654, + -0.3809266, + 0.55638367, + -0.22498071, + 0.03636074, + 0.0626437, + 0.18838617, + 0.07567531, + -0.060166974, + -0.0295854, + 0.35850775, + 0.572571, + 0.24513787, + -0.051831484, + 0.1213973, + -0.112081885, + 0.34386083, + 0.058734886, + 0.2123028, + -0.055206463, + -0.17410697, + 0.60592633, + 0.05375205, + 0.15969065, + 0.15879674, + -0.102624334, + -0.126789, + 0.13526292, + 0.43777296, + 0.8610023, + 0.17073205, + -0.7510893, + 0.32480875, + -0.08541776, + -0.69455945, + -0.1597112, + -0.1819969, + -0.300733, + 0.11109846, + -0.13106734, + 0.08822577, + -0.37106177, + -0.4596391, + 0.03113477, + 0.30333388, + -0.5363646, + -0.14879338, + 0.33768055, + -0.1673053, + 0.06134403, + 0.35559994, + 0.06956534, + 0.15744735, + -0.30650443, + -0.13260618, + -0.015691921, + 0.3035733, + -0.10864216, + -1.006285, + -0.1242965, + -0.024743553, + 0.345779, + 0.95479035, + 0.7164414, + 0.39680153, + -0.10696702, + 0.33961576, + 0.15845573, + -0.2561929, + 0.4507866, + -0.28375417, + -0.266434, + 0.42573124, + 0.7140197, + 0.26412898, + -0.47233257, + 0.0609061, + -0.50316334, + 0.2650919, + 0.06679402, + -0.2051391, + 0.6297936, + 0.60798323, + 0.15328749, + -0.25645483, + -0.054280363, + -1.0851399, + -0.1001866, + 0.8691568, + -0.29896885, + 0.123388745, + -0.05633694, + 0.72462285, + 0.5712875, + 0.34482017, + 0.7591493, + 0.07931421, + -0.35412273, + 0.04981621, + -0.16635787, + -0.122769974, + -0.19719625, + 0.37630862, + 0.5441583, + -0.5635314, + -0.24857077, + 0.5087845, + -0.74433756, + 0.18029757, + 0.7445892, + 0.2758112, + -0.35397243, + 0.18015525, + -0.2172335, + -0.32496712, + -0.29521513, + 0.028378956, + -0.07124542, + -0.18528622, + -0.06909378, + -0.49163026, + -0.3099196, + 0.15995672, + 0.07900701, + -0.28048903, + -0.31614363, + 1.0528697, + 0.07577979, + 0.04577537, + -0.22928427, + 0.1569011, + 0.16317523, + 0.75248605, + -0.04671375, + -0.95274043, + 0.002933597, + 0.32739845, + -0.2379204, + -0.1554988, + -0.68585736, + -1.0556097, + -0.12285259, + 0.107579544, + -0.61704475, + 0.08091177, + 0.15216963, + 0.32288483, + -0.43015283, + -0.33495352, + 0.3046965, + -0.72467655, + -0.23765421, + 1.0631155, + -0.005374402, + -0.43808755, + -0.8345298, + -0.002856329, + -0.06577439, + 0.08860563, + 0.25293908, + -0.041033566, + 0.49888036, + -0.77757144, + 0.5774645, + 0.14536951, + 0.2508913, + 0.6025641, + -0.12386325, + 0.41703787, + 0.19879758, + -0.11734441, + 0.024749324, + -0.058259107, + 0.27312505, + 0.4034993, + -0.25216144 + ], + "2025-05-20T11:44:17.758075", + "2025-05-20T11:44:17.758075", + -53.5251121521, + -78.3175201416, + -78.8380432129, + "3", + "ID: 16414826
Cluster: 3
Chunk: Einige wenige Constraints k\u00f6nnen mit Penalties abgebildet\nwerden.7.\n\n\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\nDownhill Simplex\nNachteile\n\uf0fe Ineffizient (im Vergleich zu Qu..." + ], + [ + 11728, + "1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein muss, k\u00f6nnen hier\nlineare Straffunktionen (genauso wie quadratische\nStraffunktionen) verwendet werden.\n\n\n\n287.\n\nReelwertige Optimierung in N Dimensionen\n7.2 Nelder-Mead-Algorithmus\n2-Dim Optimierungsproblem mit 1 nichtlineare\nGleichheitsbedingung\nMin [ x 2 + x 2 ]\n1 2\nx = ( x \u2013 2 ) 2\n2 1\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\n\uf0e0 \u00dcbungen 7.2.3 \u2013 7.2.5\n297.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nMin f(x), x in RN\nf\u00fcr N = 1: Newton-Algorithmus\nx = x \u2013 f\u2019 \/f\u2019\u2019 = x \u2013 (f\u2019\u2019 )-1*f\u2019\nn+1 n n n n n n\nf\u00fcr N > 1: Newton-Algorithmus\nx = x \u2013 H-1 (x ) * gradf (x )\nn+1 n n n\nx = x \u2013 H-1 * gradf\nn+1 n n n\nWie f\u00fcr N=1: exakt falls f(x) quadratisch.\n\n307.\n\nReelwertige Optimierung in N Dimensionen\n7.3 Newton-Verfahren\nFalls f(x) nicht quadratisch und wir haben einen guten Startwert in der N\u00e4he eines lokalen Minimus (konvexes Gebiet),\nf\u00fchren wir Iterationen durch\n\uf0e0 Beispiel \u00dcbung 7.3.1 in der Vorlesung\nWeiter: Um die Stabilit\u00e4t zu erh\u00f6hen f\u00fchren wir noch eine Schrittweiten-Steuerung ein (hilft, wenn der Startwert nicht so gut\nsein sollte).\n\nx = x \u2013 c*H-1 * gradf\nn+1 n i n n\nmit 0 < c \u2264 1 steuert die Schrittweite (z.B. Backtracking).\n\ni\n\uf0e0 Hausaufgabe 7.3.2\n317.\n\nReelwertige Optimierung in N Dimensionen\n7.4 Steepest-Descent\nOder auch: Methode des steilsten Abstiegs\nIn der Praxis erweist sich die Bestimmung von H-1 als schwierig und aufwendig.\n\nn\n\uf0e0 H-1 durch etwas \u00abeinfacheres\u00bb n\u00e4hern.\n\nn\n\uf0e0 brutal einfache Idee : H-1 \u2248 1.\n\nn\nDamit ergibt sich der Steepest-Descent-Algorithmus mit Schrittweitensteuerung:\nx = x \u2013 c * gradf\nn+1 n i n\nmit c > 0 steuert die Schrittweite.\n\ni\nDer Steepest-Descent-Alg ist nicht invariant unter der Transformation f \uf0e0 a*f und x \uf0e0 b*x.\n\nDamit liefert der Steepest-\nDescent-Alg NUR eine Richtung.\n\nEr liefert keine Information \u00fcber die L\u00e4nge des Schrittes.\n\n\uf0e0 \u00dcbung 7.7.1 ohne Schrittweitensteuerung.\n\n327.", + 18240, + 10744175, + null, + "md", + null, + [ + -1.1105303, + 0.06864798, + 0.71910334, + -0.18397726, + 0.40972143, + -0.7054399, + 0.120589584, + 0.06977714, + 0.17998672, + -0.5044099, + -0.14304009, + -0.3858181, + 0.32415226, + 0.1237356, + -0.23963083, + 1.1129233, + 0.052708745, + 0.17511317, + 0.24991876, + -0.7547415, + 0.3843258, + -0.39785877, + 1.0093063, + -0.030776199, + -0.021194581, + 0.54484457, + 0.12631112, + 0.22197092, + -0.37498313, + -0.050174035, + 0.039562397, + -0.15975536, + -0.49124312, + -0.16598295, + 0.23522797, + 0.08347469, + 0.01383692, + -0.31489384, + -0.2513137, + 0.92324513, + -0.6272385, + 0.43500167, + 0.0059109367, + 0.72570336, + 0.4175001, + 0.3460745, + -0.34581363, + -0.933015, + -0.9015244, + -0.17036553, + -0.71259964, + 0.6026952, + 0.2573188, + -0.38227403, + 1.1507255, + -0.42278057, + 0.107027724, + 0.33497873, + 0.44944993, + 0.64581823, + 0.7512649, + 0.20085537, + -0.23012249, + 0.07650302, + -0.033337962, + 0.6877012, + 0.24642086, + 0.25405875, + 0.23693666, + -0.17440178, + -0.42489418, + 0.45982778, + 0.15547007, + 0.426689, + -0.49688837, + 0.5602239, + 0.08272434, + 0.34826818, + 0.49954945, + 0.15854914, + 0.76822096, + -0.83671963, + -0.18912646, + -0.5483409, + 0.8681829, + 0.16226247, + 0.09169914, + 0.14857711, + 0.5682444, + -0.7125236, + 0.31854573, + 0.3060955, + 0.20546785, + 0.34898773, + -0.13908522, + 0.007658899, + 0.46188152, + -0.06491899, + -0.7243664, + 0.46457994, + -0.15860783, + 0.43750754, + 0.6044529, + -0.37283018, + 0.47789022, + -0.3771025, + 0.20851119, + 0.428959, + 0.5048888, + 1.2367183, + 1.3042477, + -0.8239044, + 0.2385473, + -0.21983874, + 0.14078932, + -0.5094715, + -0.67042434, + -0.17447896, + -0.3901482, + 0.33460575, + 1.1141772, + -0.2561117, + 0.19750887, + 0.6886864, + 1.6684773, + 0.02923269, + -0.15279582, + 0.9326503, + -0.4296056, + 0.1846486, + 0.32710308, + 1.330249, + -0.0437195, + -1.09105, + 0.46557397, + 0.23119096, + 0.34279835, + -0.7199694, + -0.0203703, + 0.4215241, + -0.15992266, + -0.31821904, + -0.044296265, + -0.4966639, + 0.11851539, + -0.27752948, + -0.8255361, + 0.05114995, + 0.3885741, + -0.21624427, + 0.3705124, + 1.0041915, + 0.111864805, + -0.122296736, + -0.48367423, + 0.5297337, + 0.131815, + -0.03928748, + -0.16495071, + 0.26176965, + 0.0054346323, + 0.50323594, + -0.50040245, + -0.06999241, + -0.008060186, + -0.8073232, + 0.20860928, + -0.5522947, + 0.80496764, + -0.69027996, + -0.2414091, + -0.4414382, + 0.41378978, + -0.039782956, + 0.10689332, + 1.1175846, + 0.95411474, + -0.44457474, + 0.2948665, + 0.16916165, + -0.2124489, + 0.2538707, + -0.54245025, + -0.23399425, + -0.038313173, + 0.5289067, + 0.25330588, + -0.0041545033, + -0.32928854, + 0.080382414, + 0.22808817, + 0.026764773, + 0.18684019, + -0.04875319, + -0.39426947, + 0.02765483, + -0.8620125, + -0.03506009, + -0.44637594, + -0.0065398254, + 0.28961688, + -0.014371585, + -0.09094451, + -0.75126004, + -0.33307344, + 0.18529226, + -0.18279, + -0.2580526, + 0.614034, + 0.52030194, + 0.096954666, + 0.13978429, + -0.68663496, + -0.12573875, + -0.26340753, + 0.041743796, + 0.35363537, + 0.5310409, + -0.6506557, + -0.41990474, + 0.11847888, + 0.080018155, + -0.42661023, + -0.1720043, + 0.15585846, + -0.3275026, + -0.7652888, + 0.21869761, + 0.7052209, + 0.07132223, + -0.32732052, + -0.88082504, + 0.4424097, + 0.18308438, + -0.3803045, + 0.17524582, + -0.10954079, + 0.16287203, + 0.18842126, + 0.2991001, + -0.10375947, + -0.22646366, + -0.379678, + -0.05731316, + 0.08060378, + 0.042814624, + 0.25985786, + -0.19103247, + -0.19963361, + 0.28536248, + 0.4675508, + -0.10763236, + -0.067371756, + 0.16797325, + 0.8809258, + 0.34084556, + -0.20532188, + 0.37432745, + -0.34357798, + -0.16109258, + -0.29194498, + 0.3963269, + 0.53382224, + 0.16745435, + -0.39808068, + -0.52530694, + 0.3193195, + 0.6577648, + 0.18169902, + 0.61751497, + 0.038960297, + 0.2771535, + -0.31212342, + 0.2185865, + -0.37959614, + -0.37459677, + -0.48089066, + 0.033542864, + 0.2014372, + -0.4467752, + 0.2874396, + -0.44939238, + -0.58884734, + 0.29352498, + -0.08405174, + -0.22757122, + -0.84223396, + 0.105583124, + 0.53204596, + -0.13129118, + 0.13974395, + -0.6793457, + 1.4364417, + 0.14187251, + 0.033263985, + 0.55714124, + -0.039508656, + 0.026957631, + -0.23280469, + -0.28100026, + -0.07807992, + 0.5626843, + 0.19889536, + 0.95478994, + 0.019520806, + 0.1190522, + 0.61991984, + -0.34258968, + -0.97703403, + 0.36503848, + -0.3636386, + -0.17807478, + -0.047974244, + -0.49023667, + 0.87109727, + -0.20398958, + -0.69574606, + 0.22627309, + 0.93216777, + 0.27485296, + 0.35733914, + 1.1352645, + -0.1904095, + -0.9590375, + -0.45522413, + -0.25020036, + 0.47553122, + -0.13236031, + -1.140802, + 0.3533325, + 0.115164146, + 0.021325402, + 0.24647698, + 0.3125776, + 0.40119627, + 0.004510872, + -0.10840787, + 0.5121397, + -0.46261674, + -0.1767803, + -0.43057775, + 0.48331007, + -0.11961335, + 0.7821024, + -0.34275153, + -0.43428624, + 1.785649, + 0.9062295, + -0.13764703, + 0.5240913, + 0.28149745, + 0.09768115, + 0.092371866, + 0.121861994, + 0.33287755, + 0.35508943, + 0.1760278, + 0.010705935, + -0.2576356, + 0.22005095, + -0.6873311, + -0.3854786, + -0.2190774, + -0.564494, + 0.18347648, + -0.034773797, + -0.10258124, + -0.5740123, + -0.49859574, + -0.40598017, + -0.3312833, + -0.75496787, + -0.19651318, + 0.49373418, + -0.8207393, + 0.6566869, + -0.25271675, + 0.33018592, + -0.18147878, + 0.37913716, + 1.5860394, + 0.08559178, + 0.34965065, + 0.3799571, + -0.32417408, + 0.2926337, + 1.6300108, + -0.5999941, + 0.35125878, + 0.15870203, + -0.6013923, + 0.45150664, + 0.43582046, + 0.034671213, + -0.5870819, + -0.4218538, + 0.12212667, + 0.43651658, + -0.5772359, + -0.13933365, + 0.3609054, + 0.4227867, + -0.49589485, + -0.017801076, + -0.12664871, + -0.35934168, + 1.0178355, + -0.6611188, + 0.30662876, + -0.7993474, + 0.05708495, + 0.18055493, + -0.52790695, + -0.10943671, + 0.21233857, + -0.24715361, + 0.09498349, + 0.6254128, + -0.1633935, + 0.4771983, + 0.08875072, + 0.37884033, + -1.1512824, + -0.50297457, + -0.02422661, + 0.052352056, + 0.022915248, + -0.11444991, + -0.53335506, + 0.37040818, + 0.013516463, + -0.08985581, + 0.30061057, + 0.23975256, + -0.5424321, + -0.08811154, + 0.60525125, + 0.22729263, + -0.1127169, + -0.7324823, + -0.01788015, + -0.19729184, + -0.24238019, + -0.34710553, + 0.27686417, + 0.05814019, + -0.09468774, + 0.99828213, + 0.28084224, + 0.19601768, + -0.39963362, + -0.3878728, + -0.6471038, + 0.10939485, + -0.7038361, + -0.32483304, + -0.3746746, + 0.56944644, + 0.19136593, + 0.35877007, + -0.22494099, + -0.18444227, + -0.19393775, + -0.3107166, + 0.18459973, + -0.4619838, + 0.23389874, + 0.5245513, + -0.14129108, + -0.16505247, + 0.2787431, + 0.2650945, + -0.17652607, + -0.06749089, + -0.0879906, + -0.36439008, + 0.40752098, + -0.2456465, + -0.3904669, + 0.5087926, + 0.2542777, + -0.5549849, + -0.054044507, + -0.10270067, + 0.28421572, + 0.4005112, + 0.9951851, + 0.21875261, + -0.06905327, + -0.24362625, + -1.1253903, + -0.7941209, + -0.19581716, + 0.29784214, + -0.08279458, + -0.434929, + 0.11714066, + 0.18987226, + 1.0101738, + 0.36477405, + 0.1711286, + 0.039741315, + 0.58920157, + 0.16777097, + 0.25667265, + -0.7657878, + 0.028106496, + -0.095135815, + -0.111176625, + -0.48422214, + -0.29852122, + 0.5058516, + -0.52110934, + -0.15612105, + -0.2714553, + 0.7762082, + 0.4034827, + 1.0955511, + 0.1230042, + -0.036324833, + -0.07041969, + -0.24916604, + 0.3776015, + -0.0328333, + -0.016303156, + -0.26461494, + -0.72711647, + 0.40330595, + 0.38047758, + 0.8074109, + 0.25145197, + 1.2523563, + 0.7509255, + 0.6390604, + -0.2509333, + 0.019083098, + 0.40929186, + 1.1858506, + -0.3352076, + 0.07303175, + -0.3796691, + -0.15612851, + 0.29420686, + -0.5696329, + -0.07644815, + -0.11020284, + 1.2661014, + -0.110909276, + -0.12385713, + -0.304861, + -0.123733155, + 0.3145373, + -0.84466094, + 0.22060211, + -0.48925275, + 0.021709561, + 0.15450649, + -0.6535776, + 0.11252625, + -0.4578085, + 0.8174044, + -0.6616547, + -0.29430827, + -0.22683533, + 0.22489397, + -0.020723335, + 0.25271899, + -0.6728952, + -0.21852478, + -0.030229092, + -0.08496626, + 0.67081326, + -0.029307371, + 0.06445503, + 0.41632047, + -0.65324926, + -0.031140655, + 0.1576566, + 0.349308, + 0.059017055, + -0.24748975, + -0.18549292, + 0.3074503, + -0.84079504, + 0.53918856, + -0.26113427, + 0.3280797, + 0.10809176, + -0.41438866, + 0.35363057, + 0.37396908, + 0.2270721, + -0.20765495, + 0.15395367, + 0.24940708, + 0.26949677, + -0.08326705, + -0.1516345, + -0.695781, + -0.122069776, + 0.42573872, + -0.42601365, + -0.32304358, + 0.11542632, + -0.39539874, + -0.011652432, + 0.064125314, + -0.135322, + 0.032941982, + -0.28824317, + -1.0082732, + -0.96823835, + 0.045787625, + -0.7411304, + 0.09935844, + -0.39734027, + 0.06672399, + -0.78965956, + 0.37459344, + -0.05420341, + 0.3853338, + -0.2734422, + 0.2113229, + -0.026246049, + -0.31864506, + 0.12599391, + -0.5994519, + -0.86117154, + 0.468274, + -0.6032009, + 0.09601588, + 0.41312465, + -0.3209449, + -0.09754009, + -0.4155526, + -0.5519665, + -0.29636472, + -0.2988368, + 0.21510585, + 0.23539805, + -0.15514478, + -0.28797078, + 0.090194196, + -0.21402475, + -0.4084905, + 0.39665645, + 0.39178103, + -0.44511044, + -0.04487765, + 0.37703162, + 0.2490856, + 0.1627794, + 0.31969994, + -0.23555893, + -0.2837101, + -0.23952943, + -0.40743858, + -0.021726249, + 0.41632074, + -0.8384392, + 0.10615899, + -0.19193977, + -0.09152026, + -0.29496303, + -0.8093186, + -0.66044396, + -0.061609194, + -0.093335465, + -0.21034856, + 0.23910706, + 0.52565265, + 0.24312948, + 0.4801275, + -0.3970605, + 0.46387064, + -0.4250062, + 0.5445057, + -0.114666395, + -0.2465068, + -0.8529581, + 0.7368318, + 0.14763872, + -0.120240636, + -0.54934037, + 0.30194625, + -0.29251516, + 0.031740792, + -0.034460746, + -0.2542066, + 0.4168505, + -0.9671753, + -0.23457798, + -0.7521877, + 0.35867122, + -0.48896146, + 0.17949642, + -0.25024804, + -0.20612532, + 0.19266412, + 0.04053463, + -0.19520822, + -0.15738888, + 0.12050636, + 0.6526376, + -0.37272647, + 0.31211823, + 0.14120765, + -0.3414366, + -0.16834323, + -0.75103384, + -0.079080775, + -0.8201376, + -0.66915274, + 0.17578691, + -0.275671, + -0.39475325, + -0.7329108, + 0.23844656, + -0.07115889, + -0.17620638, + -1.0856447, + -0.04089323, + 0.65981185, + -0.69207156, + -0.16327246, + -1.0689657, + -0.3518647, + -0.029521162, + -0.5622195, + 0.23544198, + 0.28452763, + -0.18528506, + -0.2528425, + -0.6097377, + -0.11817554, + -0.42296225, + -0.076926894, + -0.91704166, + 0.42127052, + 0.6000304, + 0.2510145, + 0.6921302, + 0.6602589, + 0.44675988, + 0.0014550984, + 0.4131712, + 0.24870285, + 0.19958766, + -0.073433496, + 0.29807794, + -0.17399168, + 0.45872694, + 0.28791225, + -0.43678206, + 0.1775451, + 0.93074065, + 0.7116844, + 0.5602035, + 0.20689188, + -0.38162875, + -0.56573653, + 0.12636757, + 0.31378677, + -0.45671836, + -0.023393795, + -0.678749, + -0.05573964, + -0.15586704, + -0.48272502, + -0.033282816, + -0.18048027, + -0.32637072, + -0.00801719, + -0.15639505, + -0.33848011, + 0.27257282, + 0.28096053, + 0.08820255, + -1.3359532, + -0.21391992, + 0.27776542, + 0.049850587, + -0.3309166, + 0.45910522, + -0.02199335, + 0.4694218, + 0.36279297, + 0.052174777, + -0.3495441, + -0.6839846, + 0.67633975, + -0.26291156, + 0.13073125, + 0.4577639, + -1.3472443, + -0.13164295, + -0.15087444, + -0.0017664209, + -0.3549154, + 0.31502098, + 0.14565648, + -0.0042060614, + -0.17033404, + -1.2440819, + 0.14316964, + -0.74710107, + -1.2358834, + -0.5794253, + -0.46833697, + 0.38450956, + -0.5598925, + 0.28171653, + -0.3090802, + 0.17262709, + -0.6327182, + 0.7142397, + -0.4575551, + 0.025754094, + -0.06805709, + -0.33854884, + -0.110400066, + -0.053272896, + -0.17558861, + -0.2335123, + 0.048465207, + 0.0932051, + 0.35556418, + -1.1568239, + 0.19264808, + -0.27289864, + -0.118323386, + -0.28286612, + 0.11987373, + 0.1847139, + -0.26473874, + 0.8681787, + 0.26198548, + -0.61988455, + 0.084982365, + -0.51875407, + -0.23560423, + 1.2545265, + -0.46645012, + -0.17804015, + -0.21264696, + 0.37829927, + 0.25311852, + -0.36393213, + 0.33603215, + -0.5894358, + 0.57282907, + 0.4165216, + -0.02604153, + 0.13038047, + -1.1411875, + 0.2403083, + 0.35721028, + -0.33274633, + -0.4946579, + 0.002807986, + 0.5879238, + -0.11253195, + 0.15760615, + -0.3483478, + 0.48679915, + 0.29527426, + 0.19538006, + 0.2486549, + 0.5151205, + -0.19653648, + 0.04460551, + 0.0074242596, + -0.9558667, + -0.5589962, + -0.19593254, + -0.38615942, + 0.4342917, + 0.70803744, + 0.4229658, + 0.25892523, + -0.19517276, + 0.59552723, + -0.013569218, + 0.39016718, + 0.07971147, + -0.5770758, + -0.3586735, + -0.08851129, + -0.17234452, + -0.04626517, + 0.21732575, + -0.47080076, + -0.5404438, + 0.038682777, + 0.29666921, + 0.3711045, + -0.35874394, + -0.4749197, + -0.18558252, + -0.14671841, + -0.23174514, + 0.019119544, + -0.0956137, + -0.2965467, + 0.37110817, + -0.25848454, + 0.06383601, + -0.32240415, + 0.027894374, + -0.059088536, + 0.15717682, + 0.1391348, + -0.086573765, + -0.020101182, + 0.3025839, + -0.032154508, + 0.17125145, + 0.3595258, + 0.51970357, + 0.5070759, + -0.60239834, + 1.0206281, + 0.20162502, + -0.11372903, + 0.8567957, + 0.6117821, + -0.0672604, + -0.39884433, + 0.12446738, + -0.027697533, + 0.2409701, + -0.12455918, + 0.45693174, + 0.30949667, + -0.27644885, + -0.037209578, + 0.050358504, + 0.49108413, + -0.62826383, + -0.10608076, + 0.22363849, + 0.26198286, + -0.17074172, + 0.69984496, + 0.060127042, + -0.02401757, + 0.53988266, + 0.44726926, + -0.053410646, + 0.41890454, + 0.8419215, + 0.67046434, + 0.041737787, + 0.35325855, + -0.086139575, + -0.47227225, + -0.8417843, + -0.60097176, + -0.18495233, + -0.23059589, + -0.19238016, + 0.08996245, + 0.0025395602, + -0.24765252, + -0.1088828, + -0.033133797, + 0.33764148, + -0.029799249, + -0.16948846, + -0.38876405, + 0.60200536, + 0.70088184, + 0.08807853, + 0.29296952, + 0.72140115, + -0.069158435, + -0.29968968, + -0.18085001, + -0.37848234, + 0.6036309, + -0.2623494, + -0.31688255, + -0.22401378, + -0.4470465, + 0.12137386, + -0.40893215, + 0.06824043, + 0.13132559, + -0.62592393, + -0.831249, + -0.12786356, + 0.1536017, + -0.11009611, + 0.61655146, + 0.18915254, + 0.1509565, + 1.2955658, + -0.0410868, + -0.17221646, + 0.20039602, + 0.6918029, + -0.11669619, + -0.018825464, + -0.27719763, + -0.36874655, + -0.067892864, + -0.077446, + -0.07295153, + -0.18485007, + -0.44056126, + -0.4891745, + 0.4581921, + 0.14438732, + 0.28514725, + 0.010154054, + -0.0017137006, + 0.057335004, + 0.32786247, + -0.0017977841, + 0.037860237, + -0.33589762, + -0.3430869, + -0.5623107, + -0.22093064 + ], + "2025-05-20T11:44:30.597604", + "2025-05-20T11:44:30.597604", + 39.4575691223, + 69.3716964722, + -100.0548782349, + "5", + "ID: 10744175
Cluster: 5
Chunk: 1\n1 2\nx \u2265 2\n2\n(a) Graphische L\u00f6sung\n(b) L\u00f6sung mit Downhill-Simplex Algorithmus mittels\nStraffunktionen\nBemerkung: Da die Zielfunktion f\u00fcr den Downhill-Simplex\nAlgorithmus nicht differenzierbar sein m..." + ], + [ + 11730, + "05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus. ,\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\n38\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren.\n\nVersuchen Sie eventuell vorhanden mehrere L\u00f6sungen durch Variation des Anfangswertes zu finden:\n(a)\n(b)\n(c)\n39\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t)\nauf.\n\n(b) Finden Sie f\u00fcr jeden Schnittpunkt jeweils einen guten Startwert f\u00fcr den Downhill-Simplex-\nAlgorithmus.\n\n(b) L\u00f6sen Sie das Gleichungs-System indem Sie ein unrestringiertes Optimierungsproblem mit 3\nDesign-Variablen mit dem Downhill-Simplex-Algorithmus l\u00f6sen.\n\nBestimmen Sie alle L\u00f6sungen mit\nden Startwerten von (b)\n40\u00dcbung 7.2.5\nEs seien folgende Optimierungsprobleme zu l\u00f6sen.\n\nGehen Sie jeweils wie folgt vor:\n(a) Graphische L\u00f6sung\n(b) Aufstellen eines unrestringierten 2-dim Optimierungsproblems\n(c) L\u00f6sen des unrestringierten 2-dim Optimierungsproblems mittels Downhill-Simplex-Algorithmus\n(I) Min [ x + x ]\n1 2\nx \u2265 x 2\n2 1\n(II) Min [ x 2 + x 2 ]\n1 2\nx - x \u2013 1 = 0\n1 2\n41\u00dcbung 7.3.1\nWir suchen die kritischen Punkte von f(x x ) = x 3 - 4 x + x 2.\n\n1 , 2 1 1 2\n(a) Bestimmen Sie gradf(x x ) .\n\n1 , 2\n(b) Bestimmen Sie H(x x ) .\n\n1 , 2\n(c) Bestimmen Sie H-1(x x ) .\n\n1 , 2\n(d) F\u00fchren Sie eine Newton-Iteration \u00abvon Hand\u00bb durch und Bestimmen Sie (x x ) mit dem Startwert (x =1 x =1) .", + 18240, + 2887496, + null, + "md", + null, + [ + 0.13278152, + -0.31135443, + -0.06157794, + -0.0959831, + -0.2155047, + 0.18859595, + -0.16959096, + -0.34411773, + -0.041826297, + -0.31756315, + -0.9122811, + -0.22444451, + 0.0037292335, + 0.19952506, + 0.5708837, + 0.2232977, + 0.6871961, + 0.60550606, + 0.30983904, + -0.8043447, + -0.27264884, + 0.05291005, + 0.78058624, + 0.6034761, + -0.6272017, + 1.1743269, + 0.23666318, + -0.18208024, + -0.078005254, + 0.4810142, + -0.9538864, + -0.016191434, + -0.7600871, + -1.2925054, + -0.23352908, + 0.39050117, + 0.45212886, + 0.25021592, + -0.64383024, + 0.47578508, + -1.1893016, + 0.611, + 0.77812654, + -0.414382, + -0.45942408, + -0.096408054, + -0.054397367, + -1.1181612, + -0.52113163, + -0.5145301, + -0.020105878, + -0.2325208, + 0.7031965, + -0.2588882, + 0.35841376, + -0.3014021, + -1.2043331, + 0.1690771, + -0.3878942, + -0.15058325, + 0.101697564, + 0.5955356, + -1.0562714, + 0.29252487, + 0.46541068, + -0.814918, + 0.8833382, + -0.29397434, + 1.08242, + 0.30045655, + -0.8468625, + 0.13749094, + 0.49681777, + -0.81653535, + -0.12798364, + 0.43576333, + -0.24409834, + 0.10145719, + -0.5168317, + 0.19488369, + 0.5306045, + -0.45292297, + -0.73087025, + -0.69558203, + 0.17853343, + 0.10927347, + 0.37190104, + 0.7577907, + 0.60335314, + -0.77994347, + 0.6115885, + 0.34977943, + 0.54180825, + 0.12498224, + -0.36913645, + 0.53334236, + -0.4988092, + -1.0403296, + 0.5792681, + 0.061288983, + 0.40794128, + 1.0559, + 0.258757, + -0.25419834, + -0.5606047, + -0.21674825, + -0.93479306, + 0.157637, + -0.074171975, + 0.30134892, + 1.088072, + -0.5859262, + -0.50312537, + 0.05258239, + 0.156779, + -0.7095016, + -0.12304297, + 0.27743536, + -0.1041456, + 0.1653678, + 0.791414, + 0.056318734, + -0.08245245, + -0.14135614, + 0.49738526, + 0.122735225, + 0.39718607, + -0.04237839, + -0.16887578, + 0.13292146, + -0.022606276, + 0.23233768, + -0.35401678, + -0.65738916, + 0.5876043, + -0.508946, + -0.28810933, + 0.40388715, + 0.4115173, + -0.12137085, + 0.4695793, + -1.6207632, + -0.6038363, + -1.229742, + 0.797075, + 0.5272327, + -0.14275688, + 0.5298482, + -0.11964016, + -0.68863976, + 0.12506014, + -1.4978632, + -0.22885236, + 1.2072421, + 0.0974693, + -0.051257845, + 0.71246576, + 0.3622653, + 0.22051454, + 0.42224854, + 0.15144718, + 0.1825112, + -0.29761747, + -0.18305585, + 0.5251316, + 0.3295107, + -0.6035769, + 0.3900929, + 1.4213151, + -1.1422626, + 0.25678518, + -0.24574405, + -0.17083566, + -0.04310607, + -0.33728582, + 0.23379776, + 0.16465096, + -0.6068399, + 0.43697876, + -0.066386655, + 0.51313287, + 0.55818623, + 0.14550602, + 0.0973894, + -0.41228867, + -0.43490815, + 0.39972666, + -0.16020359, + -0.04254414, + 0.31778383, + -0.4034773, + 0.18023324, + -0.15604183, + -0.57508016, + 0.6193066, + 0.17061692, + -0.6821827, + -0.11551791, + 0.19050148, + 0.12501691, + 0.92914134, + -0.046413276, + 0.72909325, + -0.380835, + -0.56400025, + -0.5728295, + -0.47299182, + -0.35795212, + -0.49700177, + -0.28979057, + 0.70127416, + -0.386043, + 0.5415522, + 0.5190307, + 0.027266027, + 0.1646466, + -0.22251202, + -0.8237839, + -1.0840379, + 0.23848295, + 0.27224803, + -0.021960858, + -0.1262675, + 0.142936, + 0.35766637, + 0.4548736, + 0.5258867, + 0.7544729, + 0.43750295, + 0.56583893, + -1.2316846, + -0.441197, + -0.71860844, + -0.42223158, + -0.5449957, + -0.038461443, + 0.6518616, + 0.29518667, + -0.7981539, + 0.29493442, + 0.29684487, + -0.2280859, + 0.4668674, + -0.30376026, + -0.21520835, + 0.37391156, + -0.38781515, + 0.58167017, + 0.11238755, + 1.1677887, + 0.5656577, + -0.48828962, + -0.043962434, + 0.9605713, + 0.5708154, + -0.1718336, + 0.41549957, + -0.24311967, + -0.5279203, + -0.15245146, + -0.43650907, + -0.25063822, + 0.23182863, + 0.02608934, + -0.48055077, + 0.19021404, + 0.97594094, + 0.4846406, + 0.4892656, + 0.12171269, + -0.34528613, + 0.16845417, + 0.3418432, + 0.7761509, + 0.38849103, + 1.0743829, + -0.22417736, + 0.6509449, + 0.15705523, + -0.9244966, + 0.1973379, + -0.49305004, + -0.2134893, + -0.57629377, + 0.3116263, + 0.68125594, + -1.3141932, + 0.05633321, + 0.122974694, + -0.36968324, + -0.6122818, + 0.027975544, + 1.3510925, + 0.21716595, + -0.13250229, + -0.045343764, + -0.052563004, + 0.087762594, + -0.26348215, + -0.28107244, + 0.5681984, + 1.2921271, + 0.03895397, + 0.20326939, + -0.22359481, + 0.35828394, + -0.2452621, + 0.3715069, + -1.3277928, + 0.24986061, + -0.65413326, + 0.6187351, + 0.5947165, + -0.20966962, + 0.19751352, + 0.57628644, + 1.0361384, + 0.09293172, + -0.49023482, + -0.19207585, + 0.84557027, + 0.86853635, + -0.19354211, + -0.68885565, + 0.26510537, + -0.30220044, + 0.30309957, + -0.6198408, + -0.8082925, + 0.15333593, + -1.3863586, + -0.4162713, + 0.10639246, + 0.33652335, + 0.60040927, + 0.25492328, + -0.5644359, + -0.058602702, + -0.8191221, + -0.26590186, + -0.066837594, + 0.05863843, + 0.29919574, + -0.025955364, + -0.28309247, + -1.145227, + 0.5131561, + -0.11837989, + -0.22334346, + 0.2209174, + 0.8494119, + 0.2671587, + 0.10611507, + -0.34933817, + -0.49108464, + -0.55123174, + 0.6790414, + -0.013424285, + 0.5778683, + 0.3862689, + 0.44127566, + -0.6727534, + 0.3004817, + -0.5143808, + 0.62404203, + -0.021827735, + 0.066406675, + 1.1396846, + -0.7236167, + 0.10403601, + -0.11855886, + -0.40562212, + -0.34204504, + 0.40084398, + -0.43653268, + -1.1060885, + -0.5283608, + 0.12733313, + -0.39405432, + -0.030514546, + 0.2832729, + -0.18029456, + -0.22412203, + 0.4341524, + -0.2078506, + -0.26816472, + 2.0870132, + -0.3144638, + 0.4421623, + -0.16097236, + -0.84609985, + 0.08704701, + 0.06598862, + 0.3318594, + -0.65281576, + 0.1200654, + 0.80431306, + 0.27277377, + 0.62238586, + -0.28738427, + 0.027827363, + 0.34328768, + 0.104054585, + 0.22715525, + -0.31007516, + 0.05561182, + 0.2275968, + 0.40966305, + 0.3929777, + -0.49554378, + 0.35867617, + 0.33300272, + 0.24004875, + -0.24718708, + 0.1605895, + -0.33531177, + 0.08650768, + 0.5509718, + 0.39403036, + -0.12731834, + -0.32734218, + 0.4602166, + -0.26366913, + -0.28178495, + 0.29246563, + -0.08327724, + 0.18574832, + -0.32617146, + -0.72519934, + 0.36393702, + 0.6194111, + -0.434605, + 0.16197982, + 0.5063121, + -0.11608957, + -0.5932591, + 0.60074997, + 0.30020532, + -0.32122838, + -1.1464648, + 0.36963856, + -0.258484, + -0.3240757, + -0.37507305, + -0.81534433, + -0.7781533, + 0.02148062, + 1.1315584, + 0.15528496, + 0.8833935, + 0.6972205, + -0.6685419, + -0.30832574, + -0.105755106, + -0.5330986, + -0.48839483, + -0.8983202, + -0.33653268, + 0.27870017, + 0.13802384, + -0.1289786, + -0.28357792, + -0.48529887, + 0.14804383, + 0.5671393, + -0.8907135, + 0.2928925, + 0.0938501, + 0.0067710653, + -0.6403894, + -0.1440139, + -0.21439463, + -0.8338955, + -0.18260229, + 0.11066741, + 0.00556558, + -0.06745806, + -0.015124917, + -0.30638534, + 0.26730973, + -0.46178108, + -0.27317092, + 0.36178884, + -0.13109958, + 0.47923997, + -0.36399624, + 0.494842, + 0.06134274, + -0.49330556, + 0.31668517, + 0.058342095, + -0.9186228, + 0.36583215, + 0.5066034, + 0.49339366, + -0.497808, + -0.07659338, + 0.69759226, + -0.4847431, + 0.7018075, + -0.70322704, + -0.5558381, + 0.14483123, + -0.3379312, + 0.5427033, + -0.59686476, + -0.34736636, + 0.1392045, + -0.27912822, + 0.13489726, + 0.31690472, + 0.19096076, + 0.34423745, + 0.6832738, + 0.45758986, + -0.2526263, + 0.61122006, + 0.86365396, + -0.46305776, + -0.6384415, + 0.85836315, + 0.19355962, + 0.31165552, + -0.502262, + 0.39932904, + 0.27671343, + -0.5547037, + -0.067833275, + 1.4531509, + 0.52446365, + -0.8414034, + 0.3728188, + -0.060749896, + -0.16210818, + 0.08857845, + 0.45471713, + -0.42862085, + 0.113973446, + -0.7683229, + -0.26931372, + -0.15292268, + -0.3414179, + 0.08634811, + 0.13814346, + 0.35907376, + 0.17385083, + 0.77899677, + -0.29347432, + 0.036382034, + 0.22914174, + -0.8451214, + -0.12352831, + -0.2731728, + 0.79904526, + -0.57232994, + -0.5880431, + -0.100686185, + 0.05056775, + 0.7263571, + -0.124723494, + 0.061887696, + 0.10561489, + -0.45702636, + -0.92749673, + 0.26338676, + -0.7206606, + -0.293469, + -0.34240994, + 0.07086856, + 0.2613831, + 0.113911375, + -0.41010347, + -0.21035689, + 0.046425324, + 0.81236374, + 0.09410357, + 0.2982619, + 0.3586251, + 0.02938283, + 0.21911958, + 0.20775308, + 0.20240535, + 0.27939186, + -0.36065298, + 0.7995263, + 0.060141884, + 0.12142134, + -0.716944, + 0.038572647, + -0.53842634, + 0.22529013, + 0.37635222, + -0.26122668, + -0.009716585, + 0.16900256, + 0.04834977, + -0.45682752, + -0.71560925, + -0.6909257, + -0.21666911, + -0.4594161, + 0.897729, + 0.27273157, + -1.1791021, + -0.41959184, + -0.52676094, + 0.4248587, + 0.26062524, + -0.37764415, + -0.27821213, + -0.7592299, + 0.513862, + -0.52372855, + -0.17803739, + 0.44616267, + -0.10160947, + -0.09384552, + 0.8631576, + 0.03715118, + -0.51367205, + 0.07143937, + 0.19396868, + 0.037239563, + 0.4836729, + 0.6816011, + -0.022967726, + 0.7085988, + 0.4703946, + 0.8301578, + 0.19264829, + 0.690792, + 0.16071585, + 0.6023079, + 0.99213284, + 0.4841313, + -0.80471087, + 0.1546302, + -0.54199815, + -0.0397847, + 0.48576903, + 0.11702671, + 0.2708296, + 0.3253973, + 0.17995015, + -1.1277666, + 0.8909336, + 0.54224765, + -0.010506406, + -0.058532394, + 0.6446838, + -0.0063757785, + 0.32187387, + -0.54558635, + -0.053988688, + 0.4862977, + -0.04170046, + 0.1857891, + -0.11987661, + 0.3399579, + -1.2227956, + -0.44210136, + -0.7543268, + -0.15403596, + 0.74466515, + -0.19297099, + 0.67184055, + 0.3578894, + -0.028506383, + -0.21201698, + -0.09409987, + 0.7894345, + -0.23917256, + 0.6158142, + -0.13363782, + 0.12613484, + -0.10123901, + 0.23612776, + 0.274582, + -1.279424, + 0.46554863, + -0.42464256, + 0.2833177, + -0.265592, + -0.23230657, + -0.9171607, + -0.0731343, + 0.056313045, + 0.34681985, + 0.10072088, + 0.3243995, + -1.0373851, + 0.06735458, + -0.30706966, + -0.24983689, + 0.14009961, + 0.023934279, + -0.89500135, + -0.35065505, + 0.12503356, + 0.660818, + -0.6808548, + 0.70910966, + 0.5763697, + 0.7176753, + -0.27255943, + 0.18725452, + -0.14876348, + 0.34974486, + -0.57060266, + 0.038431898, + 0.4080218, + -0.37856647, + -0.93564326, + 0.11181921, + -0.4627009, + 0.7925894, + -0.6229144, + -0.48980254, + 0.16342555, + -0.25391254, + -0.23103794, + -0.2844454, + -0.85310656, + -0.80359143, + -0.6040839, + -0.7253181, + 0.0026742183, + 0.28728622, + 1.148962, + -0.48792642, + 0.2842412, + 0.3645267, + -0.4648015, + -0.9213314, + 0.52954495, + -0.6035678, + 0.70151377, + -0.21445315, + 0.5055376, + 0.09093628, + 0.39359313, + -0.12688418, + 0.88431776, + -0.45495218, + 0.41177988, + 0.060649965, + 0.60405934, + -0.34124124, + -0.35883066, + 0.10259397, + 0.20392531, + -0.51252246, + 0.7340005, + -0.5167552, + -0.020560894, + -0.14322367, + 0.73816836, + 0.08452162, + 0.3366664, + -0.28547305, + -0.414286, + 0.2772928, + -0.27176413, + -0.33312863, + 0.019818522, + -0.6576307, + 0.23557869, + -0.14305007, + 0.33215767, + -0.5945065, + -0.5699586, + -0.95601267, + -0.44717252, + 0.015808532, + 0.7111184, + 1.0880994, + 0.14963348, + 0.42463624, + 0.24587406, + 0.45139757, + 0.06649259, + 0.237076, + 0.06986576, + 0.84835935, + -0.096683756, + 0.4504913, + 0.023005322, + -0.01268344, + 0.36110288, + 0.30280313, + -0.2742602, + -1.1210381, + -0.61601204, + 0.03838887, + 0.54113525, + 0.70907676, + -0.7621316, + 0.57458913, + -0.5426123, + 0.21902442, + -0.0943072, + -0.085781865, + -0.32712734, + 0.09240769, + -0.71261513, + -0.7671221, + -0.58039546, + -0.36024624, + -0.35377342, + 0.45254496, + 0.002359286, + 0.9285045, + -0.33838707, + -0.39363387, + -0.36997116, + -0.46203136, + -0.37905714, + -0.0467895, + -0.26566517, + 0.19194813, + 0.83236855, + -0.0074790865, + 0.04095209, + 0.35957527, + -0.517994, + 0.68622744, + 1.2182957, + -1.658386, + 0.66289836, + -0.5545988, + -0.52251, + 0.4986412, + 0.12483737, + -0.025293142, + 0.14066467, + -0.010007046, + 0.5071188, + -0.04086826, + -0.62265974, + -0.4074867, + -0.14956568, + 0.39330986, + 0.29001006, + -0.06392122, + 0.2368705, + 0.035587817, + -0.12486032, + -0.2010521, + 0.17419215, + -1.2080908, + 0.73933953, + 0.6563852, + -0.044244464, + -0.071389526, + -0.85518515, + 0.32533085, + -0.02053117, + 0.836703, + -0.103036515, + -0.24393842, + 0.33429235, + 0.31941554, + 0.5991585, + -0.6117182, + -0.10833903, + 0.35645992, + 0.52835494, + 0.38571927, + 0.038572073, + -0.26446277, + 0.25595635, + 0.41936666, + 0.5565293, + -0.4459373, + -0.16651413, + -0.5453741, + 0.020576378, + 1.0345913, + -0.24595225, + 0.07241665, + 0.36461794, + 0.09553152, + -0.55995953, + -0.10554329, + -0.06353788, + -0.5882064, + 1.0756981, + -0.38666967, + 0.15872802, + 0.007833134, + -0.27261806, + -0.27591252, + 0.106012255, + -0.13642198, + -0.10779178, + -0.011313897, + -0.2261298, + -0.14277282, + 0.30318618, + 0.28932336, + -0.19968621, + -0.100097135, + 0.3303197, + -1.3191462, + 1.121996, + -0.2981208, + -0.37089255, + -0.28362218, + -0.30452153, + 0.31841075, + 0.31817052, + 1.2421726, + 0.17694561, + 0.32516807, + 0.8151772, + 0.3517031, + 0.3440555, + 0.46692193, + -0.3421909, + -0.031560764, + -0.07589289, + 0.80694664, + 0.6548772, + -0.3370757, + 0.304637, + -0.4979766, + 0.344266, + 0.09269427, + 0.1716184, + 0.6808771, + 0.14945808, + -0.5239382, + -0.3867084, + 0.30532575, + -0.76076794, + -0.56818956, + 0.5785141, + -0.38831484, + -0.49397573, + -0.6799729, + 0.7531256, + -0.08720711, + -0.4836923, + 0.6610263, + -0.50706923, + 0.0682959, + 0.41493955, + 0.11092168, + -0.29508144, + -0.4484795, + 0.49708608, + 0.6466255, + -0.78818566, + -0.070279, + 0.006191928, + -1.2128088, + 0.3863935, + 0.8634359, + 0.3196931, + -0.29025665, + 0.44107005, + -0.68560696, + -0.1157624, + -0.2641405, + -0.5369768, + 0.22932513, + -0.40921497, + 0.54826427, + 0.39164785, + 0.4030525, + 0.4761254, + 0.79881006, + -0.6193539, + -0.047378656, + -0.14887397, + 0.33732706, + -0.21345767, + -0.7915791, + 0.061745115, + 0.08823355, + -0.55377394, + -0.1289217, + -0.60512155, + 0.05119316, + -0.056068514, + -0.21231407, + -0.28771895, + 0.030454079, + -0.0027018487, + -0.6767699, + -0.49564698, + -0.23213276, + -0.1649139, + 0.18415661, + 0.7115629, + -0.19208682, + 0.22399426, + 0.4609465, + -0.6305711, + -0.09469627, + -0.15506153, + -0.029517949, + -0.90091354, + -0.81262314, + 0.2414169, + -0.5996703, + 0.013060376, + -0.11032681, + 0.099153474, + 1.1478568, + -0.7937746, + 0.3976247, + 0.42185098, + -0.45602322, + -0.23627502, + 0.2156781, + 0.87443745, + -0.039890528, + 0.01381186, + 0.31067833, + -0.7053322, + -0.26480982, + -0.10581334, + -0.53060836 + ], + "2025-05-20T11:44:50.600937", + "2025-05-20T11:44:50.600937", + 118.2042999268, + 3.2703001499, + -47.7644805908, + "1", + "ID: 2887496
Cluster: 1
Chunk: 05x 2.\n\n\n\n1 2 1 2\n37\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\n\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Dow..." + ], + [ + 11732, + "(x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n\n\n\n(a) Berechnen Sie den Gradienten der Rosenbrock-Funktion.\n\n(b) Verwenden Sie das Script test_steepest_descent.py .\n\nF\u00fchren Sie f\u00fcr verschiedene Startwerte und f\u00fcr verschiedene Toleranzen die Optimierung mit dem Steepest-\nDescent-Algorithmus durch.\n\nNotieren Sie jeweils die Anzahl der Funktionsaufrufe, die ben\u00f6tigt werden.\n\n(c) In dem Skript test_steepest_descent.py wird die Schrittweite mit dem Faktor a = 2 erh\u00f6ht bzw.\n\n1\/a = \u00bd erniedrigt.\n\nExperimentieren Sie mit verschiedenen a, z.B. a= 1.5\noder a = 3.\n\nWas beobachten Sie?\n\n45Musterl\u00f6sungen\n46\u00dcbung 7.1.1\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem Parameterscan.\n\nVariieren Sie dazu die Parameter in dem Bereich:\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8).\n\nF\u00fchren Sie dabei Parameterscans mit jeweils 4, 8, 16, 32, 64 Testpunkten pro Parameter durch\n(wenn ihr Computer 128 und mehr schafft, probieren Sie es).\n\nVisualisieren Sie Ihre Ergebnisse.\n\nM a* S*\n4 [4.\n\n1.667 6.283 6. ]\n\n38.7003\n8 [4.714 1.714 5.386 5.429] 1.835116\n16 [4.8 1.667 5.864 5.2 ] 2.0037\n32 [4.742 1.645 5.878 5.097] 0.075264\n64 [4.714 1.651 5.884 5.143] 0.233\n47\u00dcbung 7.2.1\nFinden Sie jeweils die L\u00f6sung des Optimierungsproblems\nMin f(x)\nmit Hilfe des Downhill-Simplex-Algorithmus.\n\nVariieren Sie die Startwerte um ko-existierende lokale Minima zu entdecken.\n\n(a) f(x) = -1\/5 x 3 + 10x + x 2.\n\n1 1 2\nL\u00f6sung: x* = (-4.0825, 0).\n\n(b) f(x) = 10( x \u2013 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.", + 18240, + 5832792, + null, + "md", + null, + [ + -0.3678096, + 0.22411136, + 0.14555797, + -0.42699647, + -0.729299, + 0.24891435, + 0.4685517, + -0.28782007, + 0.0039182007, + 0.33779606, + -0.33120748, + 0.55808645, + 0.5444058, + 0.027608246, + 0.08851585, + 0.5265253, + 0.1125632, + -0.078657985, + -0.16471888, + -0.8651752, + 0.34232825, + 0.29238293, + 0.58000296, + 0.3738271, + -0.053281233, + 0.2833863, + 0.17771712, + 0.2546254, + 0.19173825, + 0.3640164, + -1.1249534, + -0.62808365, + -0.20911168, + -0.7429463, + -0.23612238, + 0.031128652, + 0.08355768, + 0.49920803, + -1.0714387, + 0.2685635, + -0.7407983, + 0.34027272, + 0.057589408, + -0.14611419, + -0.7766918, + 0.26893753, + -0.23267646, + -0.6933191, + -0.048484992, + -0.7750932, + -0.47608018, + -0.5479562, + 0.6980775, + -0.13372378, + 0.07242524, + -0.92573684, + -0.46304497, + -0.44765055, + -0.016542159, + -0.08197684, + -0.206312, + 0.016311366, + -0.925002, + -0.12568606, + 0.6677194, + 0.071036585, + 1.1142404, + 0.017384283, + 1.0018773, + 0.00133482, + -0.27840173, + 0.634758, + 0.5802839, + -0.7605524, + -0.20455557, + -0.04038713, + 0.24859002, + -0.008373266, + 0.325014, + 0.35012645, + 0.4150449, + 0.4536388, + -0.4758337, + -0.26766813, + 0.15295926, + -0.23286396, + 0.67715883, + 0.88060784, + 0.38762388, + -0.2840984, + 0.13272654, + 0.09397071, + 0.19123562, + -0.19487503, + -0.0045328597, + 0.588555, + 0.03219355, + -0.11476211, + 0.24841958, + 0.24925984, + 0.15711085, + 0.10532148, + 0.3912235, + -0.8853935, + 0.075310834, + -0.494076, + -0.55151516, + 0.09978305, + -0.16531575, + 0.6700412, + 0.5069528, + -0.40286332, + -0.16228649, + 0.05990828, + 0.57297665, + -0.37969565, + -0.6679734, + 0.08180514, + 0.21972953, + 0.5694242, + 0.38082644, + 0.22479609, + 0.0020216443, + 0.49434677, + 0.53689814, + 0.49539545, + 0.08606393, + 0.4565222, + 0.0072135013, + 0.12637742, + 0.101515055, + -0.029388305, + 0.8617165, + -0.65296954, + -0.005246274, + -0.18843746, + -0.3285613, + 0.062149987, + 0.24110913, + -0.2830578, + -0.17067373, + -0.3850755, + -0.47518814, + -0.6953597, + 0.76148766, + 0.172775, + 0.046362113, + 0.8002584, + -0.08829208, + -0.49679655, + 0.05950617, + -0.059442427, + 0.7228303, + 0.70137143, + 0.017351463, + 0.4381916, + 0.94820493, + 0.005438257, + -0.05484689, + 0.11405181, + 0.15489933, + 0.23444295, + -0.85799915, + 0.03261217, + -0.018469501, + 0.12495635, + -0.052886948, + 0.14157408, + 0.83121943, + -0.8663431, + 0.33892405, + 0.043594994, + 0.22028501, + -0.043169703, + 0.09806814, + 1.2112548, + -0.16024297, + -0.71801597, + -0.11406754, + -0.055837423, + 0.5019528, + 0.3446591, + -0.03072898, + 0.05742063, + -0.6704931, + -0.22773243, + 0.3419827, + 0.14368197, + -0.084652215, + 0.25224182, + -0.067714304, + 0.20457816, + 0.18921226, + -0.009927638, + -0.6465068, + 0.271971, + -0.14164138, + -0.011513546, + -0.028339138, + -0.118608944, + 0.57998353, + 0.20205209, + 0.3259616, + -0.25774056, + -0.7522779, + -0.20399459, + -0.13177615, + -0.62510663, + -0.21027783, + 0.90771055, + 0.7177583, + -0.25513408, + -0.050829537, + 0.26926628, + -0.11782524, + 0.26412454, + -0.05102687, + -1.5365572, + -0.45302978, + 0.16255228, + 0.063613735, + -0.28642243, + 0.34522817, + -0.07101329, + 0.18005542, + -0.23682334, + 0.32415867, + 0.66335356, + 0.34608054, + -0.10468494, + -0.6694654, + -0.68839955, + -0.84516686, + -0.36476266, + -0.44299683, + -0.5964317, + 0.78207594, + -0.008276297, + -0.5981867, + 0.001056999, + 0.54307526, + -0.11397444, + -0.37990654, + -0.032238036, + -0.1376842, + -0.35169297, + 0.04135808, + 0.6256416, + 0.30124485, + 0.22195148, + -0.22071159, + -0.8043813, + 0.006213922, + 0.47676125, + 0.1049833, + -0.5621684, + -0.019654013, + 0.4216263, + -0.5494164, + -0.1278236, + -0.6237479, + 0.1324845, + 0.15146062, + 0.84333676, + -0.20212379, + 0.38633245, + 0.19855791, + 0.71972877, + -0.27934828, + 0.39083228, + -0.12750864, + 0.10830249, + -0.097761914, + 0.3528639, + 0.29329097, + -0.044711247, + -0.53218585, + 0.22838737, + 0.21223006, + -0.59300625, + 0.40613398, + 0.32882994, + -0.18848594, + -0.019406153, + -0.2230433, + 0.45763916, + -0.14360718, + 0.25143954, + 0.38984266, + 0.36529982, + -0.022876233, + -0.35925207, + 1.7798438, + -0.5238199, + -0.1401142, + 0.28656393, + -0.26484823, + 0.0066848993, + -0.27643174, + -0.2255847, + 0.44005957, + 0.65535617, + 0.22686455, + -0.08135609, + 0.55944777, + 0.5990618, + -0.16939652, + 0.13322672, + -1.2064099, + 0.6458739, + -0.46091852, + 0.30762303, + 0.19701488, + -0.5234082, + -0.17879483, + 0.24063437, + -0.05667635, + 0.42292443, + 0.095150985, + 0.15176065, + 0.14183438, + 0.7366917, + -0.036064304, + -0.43951753, + -0.027670555, + -0.24423136, + 0.57796323, + -0.0843677, + -0.88704884, + 0.31413665, + -0.7154766, + -0.062333897, + 0.21903536, + 1.197645, + -0.19913635, + 0.22721112, + 0.021787114, + 0.31952465, + -0.15354723, + -0.31043345, + -0.13725622, + 0.2909922, + 0.25442785, + 0.80317587, + -0.7394225, + -1.6850538, + 0.42473316, + 0.11797817, + 0.26467574, + 0.29278797, + 0.15541041, + 0.12741724, + 0.22435205, + -0.24607763, + -0.28285766, + 0.042361274, + 0.6792438, + 0.32505167, + 0.17487241, + 0.008075317, + -0.28720716, + -0.749232, + 0.25035363, + -0.39171287, + 0.2996157, + -0.16307858, + -0.27318275, + 0.66949147, + -0.7812344, + -0.075632304, + 0.017204536, + -0.38158864, + 0.2547915, + 0.78250456, + -0.5015506, + -0.25575796, + -0.50574535, + 0.32863018, + -0.4108349, + 0.013615236, + 0.46996215, + -0.5061204, + 0.014836654, + 0.26761582, + -0.16426851, + -0.20927489, + 1.8972657, + -0.10329004, + 0.025539964, + -0.5328487, + -0.19693592, + -0.2534776, + -0.38866043, + 0.07821511, + -0.16033472, + 0.18149069, + 0.50723135, + 0.16295336, + 0.520203, + -0.43038478, + -0.60534745, + 0.94256914, + 0.5229606, + 0.1552945, + -0.25919378, + -0.3098713, + -0.4715836, + -0.038957037, + -0.19593148, + 0.3008289, + 0.32643744, + -0.39156467, + 0.28155902, + -0.15090708, + 0.32126793, + 0.17733066, + 0.06456867, + 0.42270237, + -0.08058933, + -0.3072827, + 0.6373602, + 0.44913927, + -0.24639694, + 0.30038142, + -0.07149364, + -0.60085887, + -0.62378126, + -0.28695795, + -0.53931737, + 0.6431534, + 0.39609426, + -0.31124586, + -0.18503991, + 0.17078067, + -0.056517117, + 0.17211753, + 0.490376, + -0.2904827, + -0.18036674, + -0.56599855, + 0.017835133, + -0.16302752, + 0.22354655, + -0.4542738, + -0.12575115, + -1.008352, + -0.74524355, + 0.52247524, + 0.2563143, + 0.12293034, + 0.45703185, + -0.6626438, + -0.16453561, + -0.19931717, + 0.14595613, + -0.558118, + -0.26759505, + 0.0133200735, + 0.5464997, + -0.36390835, + -0.37997672, + -0.018119376, + -0.03083529, + -0.052278962, + 0.15711764, + -0.57445437, + -0.18539193, + -0.5665644, + 0.20388064, + -0.6541168, + -0.05488745, + 0.1817056, + -0.26302105, + 0.21622056, + 0.2556601, + 0.14937562, + -0.16698268, + 0.27469927, + -0.018344037, + 0.1636677, + 0.1771978, + 0.18749279, + 0.24506679, + -0.020724583, + 0.387089, + -0.122473106, + 0.09502612, + 0.08568658, + -0.5504361, + -0.39816844, + 0.68548656, + -0.32589632, + -0.0000523869, + 0.25058815, + 0.019605666, + -0.6262946, + 0.01327803, + 0.9252068, + -0.14782907, + 0.21190892, + -0.23213175, + -0.16593814, + 0.7776412, + 0.12256965, + 0.23838785, + -0.27695498, + 0.14072421, + -0.030359862, + -0.7250395, + -0.6847402, + 0.38624734, + 0.09885856, + 0.1049504, + 0.060403064, + 0.058530256, + 0.27757126, + 0.4074472, + 0.5028242, + -0.082754016, + -0.48310372, + 0.74997807, + -0.3301796, + -0.33007717, + 0.048770674, + -0.33890763, + -0.18934955, + -0.95521396, + 0.1361145, + 0.58137345, + 0.099846475, + -0.6041564, + 0.69763815, + 0.42434946, + -0.33427474, + 0.25779277, + 0.35542187, + -0.1382637, + -0.05941148, + -0.45265365, + 0.35144317, + -0.120817095, + 0.15743218, + 0.20331883, + 0.43101302, + 0.1828405, + 0.23666853, + 0.30883318, + -0.53761417, + 0.4168326, + -0.12895681, + 0.22766188, + -0.5186339, + -0.5453603, + -0.025924623, + -0.050195895, + -0.4113433, + -0.03609858, + -0.13337484, + 0.61745983, + 0.1509074, + -0.0059698224, + -0.87857985, + -0.091046125, + -0.85704845, + 0.38996726, + -0.6431917, + -0.3987604, + -0.8561114, + -0.021331646, + 0.4711954, + 0.058657736, + 0.18241066, + -0.33460218, + -0.18920857, + 0.3397018, + -0.110542685, + 0.2364493, + 0.5099128, + 0.33081958, + -0.08386848, + -0.14380571, + 0.40300876, + 0.2140873, + -0.079304025, + 0.7985577, + 0.097657435, + -0.18573123, + -0.37204546, + -0.07421698, + 0.06174642, + -0.2656743, + -0.53119665, + -0.048232056, + 0.30859625, + 0.50514776, + -0.13954012, + -0.26818717, + -0.38186908, + 0.04494473, + 0.13835034, + 0.1392388, + -0.52914774, + -0.2675972, + -0.49875128, + 0.17894325, + -0.45456898, + -0.69335073, + 0.013143882, + 0.16203654, + -0.21245885, + -0.7384571, + -0.28584552, + -0.40154034, + -0.21884315, + 0.31837517, + -0.38561904, + 0.10416128, + 0.33629104, + 0.7526697, + -0.76154226, + -0.029801756, + 0.040266108, + -0.3494204, + 0.26959726, + 0.56320876, + 0.47413453, + -0.5480745, + -0.10173443, + 0.2577141, + 0.12563378, + 0.45304897, + -0.0912993, + 0.3593891, + 0.62984586, + 0.42197144, + -0.39671102, + -0.3653083, + -0.6250508, + -0.18750538, + 0.48388448, + 0.72210497, + -0.06339631, + 0.11915733, + 0.39731792, + -0.13439238, + 0.64486164, + 0.15640941, + -0.42779243, + 0.07529897, + -0.13458411, + -0.14257619, + 0.43520615, + -0.089396596, + 0.12242659, + 0.20597519, + 0.11077414, + -0.05322638, + -0.24123682, + 0.14429295, + -1.1269975, + -0.6447196, + -0.62171316, + -0.74587154, + -0.078663796, + -0.8068668, + 0.6312601, + 0.23346364, + -0.2315292, + 0.085468486, + -0.33742338, + 0.27517933, + -0.45282257, + 0.5109709, + -0.38896942, + -0.21412842, + -0.3277836, + 0.30805543, + 0.5632294, + -0.9011104, + 0.2929179, + -0.49601147, + -0.6634845, + -0.24998194, + -0.020223372, + -0.5652537, + -0.24199864, + 0.107856266, + -0.15383366, + 0.07276025, + 0.068011396, + -0.60238016, + 0.21041946, + -0.53303915, + 0.29317427, + -0.21062952, + 0.17264742, + -0.6902411, + -0.46888602, + -0.49203944, + -0.18091854, + 0.11043791, + -0.033546783, + -0.7472969, + 0.64831495, + 0.19438292, + -0.12479889, + 1.2053995, + -0.2398505, + -0.5619322, + 0.19864756, + 0.32866433, + -0.05044725, + -0.20331208, + 0.36033756, + -0.44160834, + -0.14117077, + -0.2657167, + 0.22720161, + 0.30553618, + 0.21602675, + -0.18553075, + -0.72797275, + 0.99831, + -0.52407175, + -0.28368708, + -0.7280956, + -0.49955183, + -0.14538544, + 0.83912176, + -0.21748044, + -0.15573782, + 0.31637508, + -0.19315998, + -0.30434766, + 0.6987978, + -0.49236572, + -0.22806403, + -0.10609462, + -0.14750549, + 0.4000309, + 0.068926804, + 0.13784294, + 0.97443324, + 0.1797495, + 0.93045455, + -0.63066024, + 0.17389761, + -0.64109266, + -0.8960763, + -0.2640756, + -0.06678825, + -0.46671522, + 0.117288135, + 0.052430786, + -0.43994716, + 0.57637405, + 0.061848316, + 0.18838549, + 0.18612076, + -0.18824492, + -0.66636515, + -0.20893571, + -0.032661512, + 0.13970952, + -0.10278429, + -1.0974387, + 0.1402528, + 0.13878371, + -0.01663781, + -0.3513542, + -0.8949996, + -0.1265051, + 0.077980034, + 0.2914079, + 0.40969166, + 0.43848038, + 0.23543294, + 0.35803187, + 0.109440446, + -0.13036822, + 0.020616889, + -0.28012753, + -0.5201759, + 0.4856791, + 0.3286425, + 0.8966125, + 0.41561913, + 0.29593897, + 0.065431364, + 0.14549349, + 0.3014239, + 0.0492393, + -0.15931383, + 0.18611535, + -0.0064576752, + 0.5715438, + -0.43011832, + 0.07571235, + -0.29692504, + -0.092221454, + -0.062030867, + -0.28157824, + -0.5390036, + -0.28977257, + -0.071041875, + 0.0981367, + -0.29184252, + -0.2833457, + -0.45618072, + 0.18131319, + -0.2195445, + 0.7059897, + -0.19731158, + 0.13822216, + -0.20093991, + -0.08949226, + -0.07212529, + -0.026297985, + -0.40909356, + 0.78550416, + 0.6887458, + -0.2558626, + -0.4117956, + 0.14508699, + -0.04633792, + 0.041966163, + 0.48704344, + -1.5957401, + 0.17719781, + 0.013439601, + 0.052511312, + 0.08372782, + -0.22648823, + 0.108467676, + 0.1287182, + 0.13955343, + 0.5419213, + -0.21950135, + -0.50641274, + 0.119458824, + -0.36182642, + 0.4997866, + -0.22867505, + 0.19944578, + 0.5861369, + -0.1838091, + -0.3568781, + 0.35657734, + -0.15078011, + -0.18696868, + 0.25164935, + -0.14934285, + 0.2919904, + 0.50555235, + -0.7503699, + -0.2555865, + -0.077376425, + -0.1081697, + 0.33818665, + -0.05112584, + -0.4611317, + 0.35204726, + 0.3755425, + -0.1496095, + 0.2775311, + -0.14453304, + 0.3293343, + -0.2257966, + 0.19469005, + -0.8857268, + -0.035280302, + 0.35240868, + 0.27970234, + -0.6004595, + 0.11718616, + -0.22629058, + 0.3121088, + 0.8206786, + 0.12516652, + 0.22023453, + 0.040208317, + 0.1381906, + -0.6531981, + -0.008616332, + -0.41257447, + -0.4897079, + 0.2663996, + 0.09819694, + 0.41223788, + 0.056502216, + -0.2924536, + 0.1404714, + 0.035569716, + 0.23123023, + -0.2601275, + 0.57726634, + -0.43612653, + 0.48369145, + 0.3326028, + -0.021763384, + 0.06573943, + -0.1703394, + 0.2746827, + -0.12419963, + 0.8612882, + -0.21641538, + -0.029472556, + -0.35721824, + 0.06159352, + 0.8180829, + 0.6987596, + 0.56595796, + 0.39515093, + 0.26997817, + 0.24380773, + 0.02880174, + 0.2784828, + 0.30242598, + 0.20002434, + 0.058678307, + 0.08191423, + 0.79062206, + 1.0817858, + -0.023412256, + -0.08826092, + -0.43861562, + 0.6168989, + -0.09572536, + -0.006578341, + 0.4336514, + 0.81465113, + -0.3953828, + -0.39177614, + 0.09178447, + -0.98929536, + 0.5380173, + 0.5389707, + -0.0856336, + -0.019611456, + 0.41620967, + 0.65044355, + -0.50357616, + -0.012526657, + 0.28029284, + -0.24956997, + 0.27333137, + 0.08202867, + -0.19779143, + 0.093467966, + -0.07715279, + -0.056605816, + 0.28485316, + -0.13857056, + 0.5141893, + 0.17058949, + -1.0139135, + -0.02707772, + 0.5643165, + 0.3561577, + -0.18859388, + -0.2069366, + -0.5709614, + -0.097347945, + -0.11189282, + -0.4537786, + 0.7373613, + -0.05198635, + 0.63270897, + 0.19181007, + -0.01122836, + 0.19118078, + 0.46701136, + -0.23291092, + -0.72001076, + 0.89419436, + 0.10528708, + -0.5974056, + -0.07599875, + 0.20955473, + -0.09517202, + -0.05110279, + -0.0868803, + -0.78747714, + 0.073184654, + -0.2837519, + -0.22408068, + -0.23230089, + -0.17649184, + 0.23802061, + -0.3305582, + 0.707357, + -0.1628861, + -0.10195011, + -0.25700322, + 0.44107562, + -0.25177133, + -0.008856084, + 0.078548595, + -0.12433519, + -0.033410963, + 0.55317503, + -0.3450623, + -0.16450153, + -0.604919, + -0.13753518, + -0.8947691, + 0.15898514, + -0.5088476, + -0.10967581, + 0.18166427, + 0.0048026275, + 0.17079625, + 0.055713877, + -0.5802569, + 0.0007911176, + 0.0005876906, + 0.5397376, + 0.74722725, + 0.076544255, + 0.64574504, + -0.6378973, + 0.24237481, + 0.0059208646, + -0.48244172 + ], + "2025-05-20T11:45:19.799025", + "2025-05-20T11:45:19.799025", + 88.2828369141, + 84.2685241699, + -8.4168233871, + "3", + "ID: 5832792
Cluster: 3
Chunk: (x x )\n1 , 2\nmit f(x x ) = (1 \u2013 x )2 + 100(x - x 2) 2 .\n\n\n\nDie Rosenbrock-Funktion ist eine herausfordernde Testfunktion f\u00fcr Optimierungs-Algorithmen, da Sie ein \u00abgekr\u00fcmmtes Tal\u00bb\n1 , 2 1 2 1\nbesitzt.\n..." + ], + [ + 11733, + "1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale Minima f*\n[-1.38925764 -7.41822149] 1.3132611100220473\n[-1.38922156 3.91063 ] -0.9233486372581649\n[ 3.76097004 -1.79076623] -0.06792301515654611\n[ 3.76098637 -7.41815126] 2.836459612005422\n[-1.38926088 -1.79077318] -1.5911215163755672\nDavon ist das beste gefundene lokale Minima x* = [-1.38926088 -1.79077318] mit f* = -1.5911215163755672.\n\n48\u00dcbung 7.2.2\nLaden Sie die Daten von DataSinus2.csv.\n\nBestimmen Sie die Parameter in dem Modell:\nf(x; a , a , a , a ) = a *sin(a *x + a ) + a\n1 2 3 4 1 2 3 4\nmit einem mit dem Downhill-Simplex-Algorithmus.\n\n(a) Extrahieren Sie aus den Daten (durch Analyse und \u00dcberlegung) einen geeigneten Startwert.\n\nBestimmen Sie die Parameter.\n\nz.B. Startwert [4.5, 1.5, 0, 5 ]\n(b) W\u00e4hlen Sie per Zufall verschiedene Startwerte im Bereich\n(3, 1, 0, 2) \u2264 a \u2264 (6, 2, 2\u03c0, 8)\nund bestimmen Sie die Parameter.\n\nVisualisieren Sie Ihre Ergebnisse.\n\nF\u00fcr die meisten Startwerte wird ein S(a*) < 10-8 realisiert bei ca.\n\n200 \u2013 400 Funktionsaufrufen.\n\nz.B.\nStartwert a0 = [3.69327012 1.467473 5.76522026 7.31055702]\na* = [4.735 1.658 5.795 5.119]\nS* =1.046512101321329e-08\n49\u00dcbung 7.2.3\nL\u00f6sen Sie die folgenden nichtlinearen Gleichungs-Systeme durch Formulieren eines Optimierungs-Problems und dem Downhill-\nSimplex-Verfahren:\n(a)\n2 L\u00f6sungen:\n(b)\n1 L\u00f6sung: x= 4, y = 3\n(c)\n2 L\u00f6sungen:\n50\u00dcbung 7.2.4\nWir suchen die Schnittpunkte der folgenden Linien:\n- ein Kreis um den Ursprung mit Radius R = 1 (rote Kurve),\n- Lissajous-Figur (Lissajous-Figur \u2013 Wikipedia) mit\nx = sin(t)\ny = sin(2t + \u03c0\/4)\nmit t in [0; 2\u03c0] (blaue Kurve).\n\n(a) Stellen Sie ein Gleichungs-System mit 3 nichtlinearen Gleichungen f\u00fcr die Unbekannten (x, y, t) auf.", + 18240, + 5967370, + null, + "md", + null, + [ + -0.33590606, + 0.39171347, + 0.3104508, + 0.10361929, + 0.33812582, + -0.89266545, + 0.2203859, + -0.17072962, + -0.38311207, + -0.5193819, + 0.09789546, + -0.028577767, + 0.9631888, + 0.6976565, + -0.3237031, + 0.42894217, + 0.1764155, + -0.10790475, + 0.4390532, + -0.23210269, + -0.51189566, + -0.07870508, + 0.607155, + 0.45995823, + -0.4367702, + 0.9425873, + 1.2920674, + 0.06832604, + 0.59638125, + 0.15249175, + -0.34862453, + -0.43116865, + -0.29870477, + -0.91613734, + -0.29049373, + -0.21590632, + -0.2930542, + 0.08318232, + -0.7841413, + -0.0034153927, + -0.7901054, + 0.61368895, + 0.12631243, + -0.29215825, + 0.42247868, + 0.6040616, + 0.27886987, + -1.1978732, + -0.24416664, + -0.5514975, + -0.57926816, + 0.2823675, + -0.3678563, + -0.5564819, + 0.40785637, + -0.45472288, + 0.0045371205, + -0.06573897, + 0.37535653, + 0.17278565, + -0.21359436, + -0.058760505, + -0.40548798, + -0.15494823, + -0.093890235, + 1.0526954, + 0.3185325, + 0.39896768, + 0.6471508, + 0.4597134, + -0.35048267, + 0.48255396, + 0.25813952, + -0.63369256, + -0.27337754, + -0.65566283, + 0.11761906, + -0.17589083, + -0.71219826, + 0.25374198, + 1.1541762, + 0.09933092, + 0.20385751, + -0.04254237, + -0.08918535, + -0.19576031, + 0.22483358, + 0.19787396, + 0.2404321, + -0.025957186, + -0.13484997, + 0.2730415, + -0.25445414, + 0.5330599, + -0.13038482, + 0.3874487, + -0.19044293, + -0.45442307, + 0.033644937, + 0.19034126, + -0.39600706, + 0.56566447, + -0.040557433, + -0.39816558, + 0.7161951, + -0.49254674, + 0.3461333, + 0.3090515, + -0.030412596, + 0.3122994, + 1.2697484, + 0.14168175, + -0.506121, + 0.52389926, + -0.010837641, + -0.59154004, + -0.59069806, + 0.20370388, + -0.15543158, + -0.31257522, + 0.1373198, + 0.38584834, + 0.106609546, + 0.48740098, + 0.13197376, + 0.06348309, + 0.38694394, + 0.8575028, + 0.18182376, + -0.19873917, + 0.4809254, + 0.5258416, + 0.3454337, + -0.25806275, + -0.20029357, + 0.049125016, + 0.3267058, + -0.45414025, + 0.18577082, + 0.1253999, + -0.66255164, + -0.50448304, + 0.108013205, + -0.418762, + 0.11707035, + 0.430934, + -0.49352115, + 0.026971685, + -0.3338327, + -0.33189088, + 0.13218048, + 0.09135047, + 0.41215834, + 0.46828347, + -1.2082564, + 0.26250207, + 0.23854397, + -0.17270845, + -0.13818276, + 0.14253643, + -0.029390574, + 0.9599662, + -0.43084943, + -0.30634317, + 0.21331799, + -0.3367448, + -0.6650989, + -0.20255336, + 0.94073933, + 0.11488612, + 0.4146423, + 0.20672353, + -0.13492694, + -0.2981984, + 0.004238449, + 0.13317117, + -0.0022086054, + -0.48821533, + -0.46299618, + 0.08836837, + -0.64553845, + 0.14289191, + -0.30086392, + -0.21818095, + 0.68341047, + -0.16812748, + -0.6347703, + -0.9230271, + 0.3478902, + 0.24960732, + -0.082797274, + -0.6342272, + 0.34937197, + -0.34813645, + -0.4743026, + -0.8953546, + 0.03705832, + -0.29891372, + 0.16870488, + -0.87467283, + 0.19414356, + 0.32681888, + 0.01969719, + -0.16106765, + 0.38122737, + 0.5729912, + -0.0047119167, + 0.10969442, + -0.020082496, + 0.29137334, + 0.42753476, + -0.07445496, + 0.2812643, + -0.28043538, + 0.42744085, + 0.44589993, + -0.26181003, + -0.11892925, + -0.24413949, + -0.037126876, + -0.029772237, + -0.4771371, + -0.3977548, + -0.20309207, + 0.07259096, + 0.10353623, + -0.61271036, + 0.21354672, + 0.13361123, + -0.14710839, + -0.12430452, + -0.21641652, + 0.0302229, + 0.18061854, + -0.3656264, + 0.8904599, + -0.07881095, + 0.4031285, + 0.17166355, + -0.0003245045, + 0.438467, + 0.041176476, + 0.78215593, + -0.53638214, + -0.2890119, + -0.12616298, + 0.3057408, + -0.57111543, + 0.1867647, + 0.5912349, + 0.7299374, + -0.11984831, + -0.19094998, + -0.26745826, + 0.51435226, + 0.632776, + 0.008805522, + -0.117792904, + -0.2087625, + -0.46639967, + -0.23401046, + 0.2640221, + 0.20766312, + 0.12164791, + -0.036320172, + 0.69862443, + 0.5222853, + 0.18709303, + -0.03745487, + 0.17772159, + 0.029548254, + 0.5356911, + 0.080552235, + -0.18985695, + -0.060920145, + -0.2523269, + -0.27250946, + 0.36531153, + 0.20142776, + -0.47303534, + -0.2952063, + -0.0676074, + -0.23673502, + -0.10643925, + -0.15354998, + 0.83791184, + -0.41829363, + 0.6375804, + 0.05150442, + 0.23957346, + 0.1909364, + 0.092406854, + 0.48399854, + -0.06581344, + -0.16266608, + 0.8553877, + 0.6186779, + -0.0045558214, + -0.12259734, + -0.0848625, + 0.90119827, + 0.3415705, + -0.07403641, + 0.114152424, + 0.31353518, + 1.1222613, + -0.33305246, + -0.8539586, + -1.2975045, + 0.21095358, + 0.16947955, + -0.14505096, + 0.24260502, + -0.23602599, + -0.028868921, + 0.548035, + -0.6153294, + -0.5094917, + 0.5805458, + 0.46327084, + 0.09499539, + 0.7213191, + -0.4820568, + -0.98985875, + -0.18374127, + -0.3119077, + 0.53249574, + -0.4696379, + -0.6569456, + 0.34249347, + -0.20338145, + -0.082161896, + 0.24956033, + 0.9542712, + 0.79970706, + 0.29157048, + -0.19261406, + -0.0028426573, + -0.28651705, + -0.1366284, + -0.3551082, + -0.44949642, + -0.42842808, + 0.3660117, + -0.36459392, + -0.4907967, + -0.11498898, + -0.44861293, + 0.24950483, + -0.14016429, + -0.16340521, + -0.07640612, + -0.0063108653, + -0.1635489, + -0.23960221, + 0.5497074, + 0.17916581, + 0.094532125, + 0.029509056, + -0.29030287, + -0.812735, + -0.27146292, + 0.32525358, + -0.43934125, + -0.4085723, + -0.4335987, + -0.335433, + 0.097798556, + 0.25620508, + 0.14483842, + 0.06562293, + -0.8902208, + 0.31216612, + 0.091096535, + -0.25931254, + 0.8130123, + -0.23010269, + -0.08069119, + -0.08905424, + 0.41154766, + 0.28664237, + 0.019053068, + 0.53550744, + 0.5910045, + 0.30451956, + -0.06331325, + 2.0988564, + -0.28108147, + -0.5976995, + -0.34309804, + 0.06326796, + -0.33786988, + -0.010220356, + -0.5256783, + -0.10211191, + -0.63157016, + 0.4036534, + 0.4906702, + 0.33467448, + -0.33670768, + -0.121758714, + 0.6700231, + 0.35760862, + -0.16497983, + -0.20975728, + -0.11325974, + -0.13261975, + -0.2896855, + -0.37124407, + 0.0099544525, + 0.30961758, + 0.44689175, + -0.2339319, + 0.023848332, + -0.13977788, + 0.20729817, + 0.1875785, + 0.08764145, + -0.08021545, + 0.22202978, + 0.12298653, + 0.6594626, + 0.09592599, + -0.13178842, + -0.09410121, + 0.4552377, + -0.43803436, + 0.20822833, + -0.53761524, + -0.031916007, + 0.21882284, + 0.10170132, + -0.009566713, + 0.7311339, + -0.0684986, + 0.049934126, + 0.3000583, + -0.026554484, + -0.39686638, + -0.70861316, + -0.027880117, + 0.35499468, + -0.11207831, + -0.499765, + -0.48348868, + -0.34388494, + -0.48105007, + 0.60503066, + -0.39658645, + 0.3469543, + -0.47920948, + 0.45409623, + 0.14348108, + -0.14048831, + -0.13981132, + 0.33521798, + -0.38107952, + 0.4963853, + 0.21793434, + 0.20167802, + -0.021880299, + -0.0005648248, + 0.48072758, + -0.6254387, + 0.097713254, + -0.82566947, + -0.10073705, + 0.1852338, + 0.38262045, + 0.09806475, + -0.2532496, + 0.07733476, + 0.11392352, + 0.22440103, + 0.08947565, + -0.0533663, + 0.2434976, + -0.15852576, + -0.19006477, + 0.32597095, + 0.6828344, + -0.049222954, + 0.42188156, + 0.19306275, + 0.06499714, + -0.018552758, + 0.5563857, + 0.40176, + -0.43232685, + -0.26301527, + 0.24536012, + -0.20925102, + -0.4339945, + 0.49012265, + 0.60176855, + -0.04978729, + -0.4828191, + 0.6418216, + 0.6538972, + 0.15746002, + -0.14003786, + 0.11694231, + 0.13776672, + -0.0044563813, + -0.26711693, + -0.43342102, + 0.2247397, + -0.26810363, + -0.13863604, + -0.33313075, + 0.3965034, + 0.32268012, + 0.19370021, + -0.46696082, + -0.22803703, + 0.48051804, + 0.05247999, + 1.0965937, + 0.13089259, + 0.2214207, + 0.41531175, + 0.4098714, + -0.30968416, + 0.21849532, + -0.04561331, + -0.060643367, + 0.17127791, + -0.46931973, + 0.21867254, + 0.81192017, + -0.23123172, + 0.3150143, + 0.30197603, + -0.40323567, + 0.46398234, + -0.37004718, + -0.7672908, + 0.33356816, + 0.006004675, + 0.21875018, + -0.124409646, + 0.07365078, + 0.24705392, + 0.12747845, + -0.12633014, + 0.16563326, + 0.07847252, + -0.056840662, + -0.49085456, + -0.52627397, + -0.08522316, + -0.6001328, + -0.8961967, + 0.015215516, + -0.1612459, + 0.37144473, + 0.5723836, + -0.4492511, + 0.26481628, + 0.22826286, + -0.005494058, + -1.2470425, + 0.35437542, + -0.78730905, + 1.0606828, + -0.46004397, + -0.26997054, + -0.3245129, + -0.06822033, + 0.9209056, + 0.011362463, + -0.30425593, + -0.7517366, + 0.13880777, + 0.27413028, + -0.1933576, + 0.2856955, + 0.23537765, + 0.6796595, + -0.11252994, + -0.24845043, + 0.3977719, + -0.0007769503, + -0.19451416, + 0.67448795, + 0.18295689, + -0.17913908, + -0.37656146, + -0.13019025, + 0.025544984, + 0.33852187, + -0.020727117, + -0.2564197, + 0.23636548, + 0.0872423, + 0.5113266, + 0.05294607, + 0.18992794, + 0.045519724, + 0.20268407, + 0.4374593, + -0.15545417, + -0.47415355, + 0.84578127, + -0.3037172, + 0.18228385, + -0.76951, + 0.3769554, + 0.18413964, + -0.34036025, + -0.7329282, + 0.1499577, + -0.384867, + -0.277074, + -0.078333884, + 0.43173605, + 0.024292514, + -0.16447209, + 0.10052106, + -0.079747334, + 0.5683817, + 0.19753318, + 0.40993354, + -0.14491975, + 1.0662547, + 0.7620299, + -0.8503555, + 0.036169294, + 0.39674735, + -0.32896972, + 0.47479004, + 0.64093304, + -0.4212622, + 0.445233, + 0.06142871, + -0.0031448603, + -0.03849586, + 0.23456362, + 0.29214394, + -0.15261322, + 0.68684715, + -0.06772319, + -0.13080488, + -0.046719633, + -0.9372045, + 0.29992792, + 0.22437409, + 0.5691649, + 0.008122586, + 0.02630509, + -0.246279, + 0.07682158, + 0.040924773, + -0.8297949, + -0.5058807, + -0.017141134, + 0.054919317, + -0.07830569, + 0.17229193, + -0.35661116, + -0.17654051, + -0.6083153, + 0.27162513, + 0.11233452, + 0.370967, + -0.22726128, + -0.08474107, + -0.05056624, + 0.27057815, + 0.14319366, + 0.50220823, + 0.2941692, + 0.10012668, + -0.50113165, + 0.5606267, + -0.26413903, + -0.5565119, + -0.3262282, + -0.481016, + -0.5187347, + -0.08354116, + 0.23001601, + -0.36792675, + -0.30980104, + 0.07762201, + -0.22544423, + -0.08877986, + 0.0025421903, + -0.5411843, + -0.3103168, + -0.79468703, + 0.38452345, + 0.1135299, + 0.019838817, + 0.0659729, + 0.41883272, + -0.09735884, + -0.8815488, + -0.37238622, + -0.22409506, + -0.32672265, + 0.2328353, + -0.35833317, + 0.48806155, + -0.16146304, + -0.005971439, + 0.2583304, + -0.57497644, + -0.63827735, + 0.1314214, + 0.20837368, + -0.17517, + -0.19427724, + -0.06900087, + 0.092233494, + -0.47418278, + -0.3864608, + -0.28755224, + 0.32606325, + 0.042186104, + -0.50984144, + -0.47762856, + 0.68613154, + 0.28856537, + -0.6695468, + -0.34591237, + 0.41832972, + 0.013998017, + -0.40121156, + -0.16996554, + 0.19653541, + -1.2125323, + -0.27781367, + -0.43350682, + -0.1131915, + -0.5043674, + 0.14370209, + 0.12693411, + -0.15184724, + 0.39240173, + 0.3629789, + 0.7289698, + 0.25402313, + -0.5330629, + -0.7510887, + 0.11286207, + 0.35968614, + 0.14193441, + -0.37580726, + -0.0049812347, + 0.00419908, + -0.26867425, + 0.039306276, + -0.18077782, + -0.23572503, + 0.91016686, + 0.03585251, + 0.448039, + 0.23250401, + -0.059245557, + -0.42372322, + -0.23279202, + 0.23459269, + 0.03195946, + -0.12765855, + -0.6202953, + 0.24968916, + 0.55304074, + 0.33581388, + -0.2941309, + -0.30869645, + -0.6403418, + 0.031887807, + 0.029901545, + -0.026063934, + 0.69973433, + -0.43355486, + -0.2034586, + -0.85406464, + -0.12872577, + 0.20614317, + 0.19064388, + -0.14787778, + 0.22580391, + 0.22506404, + 0.24838386, + 1.081974, + 0.1729262, + -0.018203596, + -0.19330841, + 0.72590435, + -1.4968921, + 0.004720202, + -0.07888028, + -0.47248036, + 0.49262154, + -0.34478003, + 0.23523398, + -0.107730284, + -0.8425615, + 0.2613603, + -0.40432376, + -0.27694544, + -0.65224814, + 0.7424147, + -0.4026419, + -0.64835334, + 0.21238434, + -0.09683728, + -0.29091868, + -0.7402414, + 0.3598189, + -0.29986382, + 0.15446621, + -0.1919071, + 0.25922272, + 0.22927418, + -0.032613564, + -0.33442527, + -0.5190184, + 0.37727833, + 0.07692185, + -0.26261303, + -0.110283166, + -0.16719837, + -0.0015096199, + -0.076535225, + -0.3241052, + 0.26163572, + -0.10726448, + -0.06968711, + -0.13368641, + 0.19738178, + -0.11340683, + -0.45369267, + 0.020275012, + 0.60410017, + -0.9112382, + 0.16955017, + -0.17485043, + -0.1865263, + 0.19080782, + -1.5234046, + -0.10345366, + -0.052331753, + 0.23880506, + 0.53663546, + -0.24265045, + -0.26531696, + 0.11780984, + -0.30664426, + 0.41968122, + -0.072069414, + 0.28039533, + -0.7664505, + 0.025151275, + 0.25613505, + 0.24604593, + 0.16977641, + 0.47325727, + 0.3389876, + 0.37681887, + 0.38041916, + -0.32667252, + 0.8149042, + -0.25926495, + 0.06907653, + -0.34268373, + -0.11257311, + -0.46087345, + -0.15273844, + 0.4997358, + -0.4539106, + 0.27756402, + 0.49088773, + -0.6158563, + 0.59985936, + -0.060182884, + 0.202691, + -0.07031589, + 0.21616141, + 0.5854108, + -0.5146055, + -0.009330824, + 0.31469998, + 0.5504163, + -0.076560006, + 0.02636834, + -0.47711086, + -0.16173875, + -0.120844685, + 0.006263092, + 0.5575075, + -0.2166308, + 0.35936823, + -0.21399754, + 0.22859916, + -0.41885504, + 0.34277546, + -0.123748906, + 0.20251282, + 0.2581409, + 0.020416893, + -0.6653402, + 0.05591305, + -0.44808155, + -0.096292466, + 0.8243559, + -0.1253737, + -0.07283937, + 0.19161347, + -0.13836502, + -0.3491693, + -0.029038519, + -0.12815437, + 0.31894088, + 0.31654105, + 0.43801534, + 0.26650214, + 0.48057893, + -0.28846806, + 0.53230786, + 0.16099234, + -0.051647183, + -0.29198918, + 0.1318759, + -0.10782446, + -0.28303936, + 1.1760926, + 0.25910196, + -0.13603283, + 0.06371283, + 0.41240427, + 0.21658808, + -0.5014255, + -0.6016535, + 0.07360568, + -0.21727075, + 0.27255863, + 0.1077101, + -0.2996914, + 0.12098016, + -0.14527807, + 0.898971, + 0.09592983, + 0.08159387, + 0.40850806, + -0.10489434, + -0.13433808, + -0.35191378, + 0.74057966, + 0.37995386, + 0.025303882, + 0.16753542, + -0.53967506, + -0.2648382, + -0.433977, + 0.42190063, + 0.3583233, + -0.14538418, + -0.012023427, + -0.18422373, + 0.13012066, + -0.63594425, + 0.30961394, + 0.093961, + -0.2407747, + -0.2667321, + -0.4671023, + -0.3149746, + 0.022633713, + 0.46642184, + 0.2163873, + 0.4074552, + 0.33905888, + -0.6657157, + -0.68455285, + -0.80516523, + -0.11686253, + 0.28140026, + -0.10913436, + -0.12661463, + -0.6720218, + -0.7079563, + -0.12829784, + -0.11200719, + 0.24317831, + -0.16509874, + -0.56251854, + 0.4119153, + -0.26087627, + -0.295765, + 0.43291384, + -0.098367766, + 0.52235484, + 0.5432571, + 0.5161535, + 0.28989768, + -0.50106823, + -0.09825129, + 0.34641367, + 0.14701648, + -0.6121292, + 0.08132542, + -0.36293986, + -0.2979607, + -0.038438633, + 0.05261112, + -0.23835163, + 0.2882274, + 0.33453023, + 0.39790174, + -0.5788158, + 0.2863186, + 0.13673428, + 0.44206855, + 0.59880894, + -0.018302038, + -0.05376276, + -0.35173792, + -0.61260134, + 0.2578006, + -0.41292694, + -0.75261146 + ], + "2025-05-20T11:45:33.868599", + "2025-05-20T11:45:33.868599", + -10.2018480301, + 81.8802947998, + 117.4437103271, + "5", + "ID: 5967370
Cluster: 5
Chunk: 1)2 + ( x \u2013 2)2 + 0.1( x \u2013 3)2 + ( x \u2013 4)2\n1 2 3 4\nL\u00f6sung: x* = (1, 2, 3, 4).\n\n\n\n(c) f(x) = sin(x + 0.1) + sin(x + 0.4) + 0.1x 2 + 0.05x 2.\n\n1 2 1 2\nEs existieren zahlreiche lokale Minima, z.B.\nlokale..." + ] + ] +} +export default tsneData; diff --git a/lexikon/src/app/librarian/vspace/tsne_types.ts b/lexikon/src/app/librarian/vspace/tsne_types.ts new file mode 100644 index 0000000..2f714f9 --- /dev/null +++ b/lexikon/src/app/librarian/vspace/tsne_types.ts @@ -0,0 +1,76 @@ +// TypeScript-Typen für vspace tsne.json + +/** + * Definiert die exakten Spaltennamen und deren Reihenfolge. + */ +type VSpaceColumns = [ + 'chunk_1024_embeddings_id', + 'chunk', + 'course_id', + 'file_id', + 'source_file', + 'file_type', + 'object_id', + 'embedding', + 'created_at', + 'updated_at', + 'x', + 'y', + 'z', + 'cluster', + 'hover_text', +]; + +/** + * Repräsentiert eine einzelne Datenzeile als Tupel, + * wobei jeder Eintrag dem Typ der entsprechenden Spalte entspricht. + */ +type DataRowTuple = [ + number, // chunk_1024_embeddings_id + string, // chunk + number, // course_id + number, // file_id + string | null, // source_file + string, // file_type + string | null, // object_id + number[], // embedding + string, // created_at (ISO-Datumsstring, z.B. "2024-05-03T09:34:39.000Z") + string, // updated_at (ISO-Datumsstring) + number, // x + number, // y + number, // z + number, // cluster + string, // hover_text +]; + +/** + * Interface für die gesamte Struktur der JSON-Datei. + */ +export interface VSpaceTSNEData { + columns: VSpaceColumns; + index: number[]; + data: DataRowTuple[]; +} + +/** + * Interface für ein einzelnes Datenelement, wenn es in ein + * Objekt umgewandelt wird (Spaltennamen als Schlüssel). + * Dies ist oft nützlich für die Verarbeitung der Daten. + */ +export interface ProcessedDataItem { + chunk_1024_embeddings_id: number; + chunk: string; + course_id: number; + file_id: number; + source_file: string | null; + file_type: string; + object_id: string | null; + embedding: number[]; + created_at: string; // Erwäge die Verwendung von `Date`, falls du die Strings parst + updated_at: string; // Erwäge die Verwendung von `Date`, falls du die Strings parst + x: number; + y: number; + z: number; + cluster: number; + hover_text: string; +} diff --git a/lexikon/src/app/not-found.tsx b/lexikon/src/app/not-found.tsx new file mode 100644 index 0000000..95c8263 --- /dev/null +++ b/lexikon/src/app/not-found.tsx @@ -0,0 +1,26 @@ +import { Metadata } from "next"; +import Link from "next/link"; + +export const metadata: Metadata = { + title: "404: Page Not Found", + description: "The page you are looking for could not be found.", +}; + +export default function NotFound() { + return ( +
+
+

404 - Page Not Found

+

+ The page you are looking for does not exist. +

+ + Return Home + +
+
+ ); +} diff --git a/lexikon/src/app/page.tsx b/lexikon/src/app/page.tsx new file mode 100644 index 0000000..dd4b0c5 --- /dev/null +++ b/lexikon/src/app/page.tsx @@ -0,0 +1,9 @@ +import SidenavContent from "./SideNavContent"; + +export default function Home() { + return ( +
+ +
+ ); +} diff --git a/lexikon/src/app/providers.tsx b/lexikon/src/app/providers.tsx new file mode 100644 index 0000000..2e70ba9 --- /dev/null +++ b/lexikon/src/app/providers.tsx @@ -0,0 +1,35 @@ +"use client"; + +import type { ThemeProviderProps } from "next-themes"; + +import * as React from "react"; +import { HeroUIProvider } from "@heroui/system"; +import { useRouter } from "next/navigation"; +import { ThemeProvider as NextThemesProvider } from "next-themes"; +import { ToastProvider } from "@heroui/react"; +import ResponsiveProvider from "shared/provider/ResponsiveProvider"; + +export interface ProvidersProps { + children: React.ReactNode; + themeProps?: ThemeProviderProps; +} +declare module "@react-types/shared" { + interface RouterConfig { + routerOptions: NonNullable< + Parameters["push"]>[1] + >; + } +} + +export function Providers({ children, themeProps }: ProvidersProps) { + const router = useRouter(); + + return ( + + + {children} + + + + ); +} diff --git a/lexikon/src/app/study/[courseId]/layout.tsx b/lexikon/src/app/study/[courseId]/layout.tsx new file mode 100644 index 0000000..b5b57a5 --- /dev/null +++ b/lexikon/src/app/study/[courseId]/layout.tsx @@ -0,0 +1,41 @@ +"use client"; + +import { TopToolbar } from "features/navigation/TopToolBar"; +import CourseActions from "features/study/components/CourseActions"; +import CoursePath from "features/study/components/CoursePath"; +import StudyProvider from "features/study/provider/StudyProvider"; +import { useParams } from "next/navigation"; +import { container } from "shared/styles/variants"; +import { cn } from "shared/utils/tailwind"; + +interface CourseLayoutProps { + children: React.ReactNode; + // summary: React.ReactNode; +} + +export default function CourseLayout({ children }: CourseLayoutProps) { + const params = useParams<{ courseId: string }>(); + const courseId = params.courseId; + return ( +
+ + + + + +
+ {children} +
+
+
+ ); +} diff --git a/lexikon/src/app/study/[courseId]/page.tsx b/lexikon/src/app/study/[courseId]/page.tsx new file mode 100644 index 0000000..7cb8846 --- /dev/null +++ b/lexikon/src/app/study/[courseId]/page.tsx @@ -0,0 +1,40 @@ +"use client"; +import { Spinner } from "@heroui/react"; +import CourseHero from "features/study/components/CourseHero"; +import { StudyContext } from "features/study/provider/StudyProvider"; +import { useRouter } from "next/navigation"; +import { useContext, useEffect } from "react"; + +export default function CoursePage() { + const { course, summaries } = useContext(StudyContext)!; + const router = useRouter(); + + useEffect(() => { + if (course && summaries.length > 0) { + // Redirect to first summary + const firstSummary = summaries[0]; + router.push( + `/study/${course.course_id}/summary/${firstSummary.summary_id}` + ); + } + }, [course, summaries, router]); + + if (!course) return ; + + return ( +
+ {summaries.length === 0 ? ( + <> +
+ This course has no summaries yet. +
+ Create a new summary to get started. +
+ + + ) : ( + + )} +
+ ); +} diff --git a/lexikon/src/app/study/[courseId]/summary/[summaryId]/page.tsx b/lexikon/src/app/study/[courseId]/summary/[summaryId]/page.tsx new file mode 100644 index 0000000..daaf037 --- /dev/null +++ b/lexikon/src/app/study/[courseId]/summary/[summaryId]/page.tsx @@ -0,0 +1,62 @@ +"use client"; +import { CourseContent } from "features/study/components/CourseContent"; +import CourseEdit from "features/study/components/CourseEdit"; +import CourseHero from "features/study/components/CourseHero"; +import { useSummary } from "features/study/hooks/useSummary"; +import { StudyContext } from "features/study/provider/StudyProvider"; +import { useParams, useRouter } from "next/navigation"; +import { useContext, useEffect } from "react"; + +export default function Page() { + const ctx = useContext(StudyContext); + if (!ctx) + throw new Error("CourseActions must be used within StudyProvider"); + + const params = useParams<{ summaryId: string }>(); + const summaryId = params.summaryId; + const { selectedSummary, mode } = ctx; + const { content } = useSummary(selectedSummary); + const router = useRouter(); + + // Update the URL when the selected summary changes + useEffect(() => { + if (!selectedSummary) { + // Find the summary with the same ID as the one in the URL + const found = ctx.summaries.find( + (s) => s.summary_id === Number(summaryId) + ); + if (found) { + ctx.setSelectedSummary(found); + } else { + // If no summary is found, redirect to the first summary + const firstSummary = ctx.summaries[0]; + if (firstSummary) { + ctx.setSelectedSummary(firstSummary); + router.replace( + `/study/${ctx.course?.course_id}/summary/${firstSummary.summary_id}` + ); + } + } + + return; + } + + const id = selectedSummary.summary_id; + if (id === undefined || id === Number(summaryId)) return; + + router.replace(`/study/${ctx.course?.course_id}/summary/${id}`); + }, [selectedSummary, summaryId, ctx.course?.course_id, router]); + + return ( + <> + {mode === "edit" ? ( + + ) : ( + <> + + + + )} + + ); +} diff --git a/lexikon/src/features/librarian/LibrarianLink.tsx b/lexikon/src/features/librarian/LibrarianLink.tsx new file mode 100644 index 0000000..aa418f9 --- /dev/null +++ b/lexikon/src/features/librarian/LibrarianLink.tsx @@ -0,0 +1,171 @@ +"use client"; +import React, { useRef, useEffect } from "react"; +import { useRouter } from "next/navigation"; + +/** + * "Librarian" button — encyclopedia letters cycling in hover background + * Letters change only on hover via randomString fill, reactively masked by cursor position. + */ +export default function LibrarianLink({ href }: { href: string }) { + const buttonRef = useRef(null); + const lettersRef = useRef(null); + const router = useRouter(); + + // Character generators + const chars = + "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789αβγδεζηθικλμξπρστυφχψωΓΔΘΛΞΠΣΦΨΩ"; + const randomChar = () => chars[Math.floor(Math.random() * chars.length)]; + const randomString = (length: number) => + Array.from({ length }) + .map(() => randomChar()) + .join(" "); // space after each char for wrapping + + // Track pointer for CSS mask and update letters on move + useEffect(() => { + const btn = buttonRef.current; + const letters = lettersRef.current; + + if (!btn || !letters) return; + + // Accept either PointerEvent or Touch + const handleMove = (e: PointerEvent | Touch) => { + const rect = btn.getBoundingClientRect(); + // Access clientX/Y which are present on both types + const x = e.clientX - rect.left; + const y = e.clientY - rect.top; + + letters.style.setProperty("--x", `${x}px`); + letters.style.setProperty("--y", `${y}px`); + letters.innerText = randomString(1500); + }; + + // Handler specifically for touch events + const handleTouchMove = (e: TouchEvent) => { + // Prevent default scroll behavior if needed + // e.preventDefault(); + if (e.touches.length > 0) { + handleMove(e.touches[0]); // Pass the first touch point + } + }; + + + + // Use named functions for add/remove event listeners + const handlePointerEnter = () => { letters.style.opacity = "1"; }; + const handlePointerLeave = () => { letters.style.opacity = "0"; }; + + btn.addEventListener("pointerenter", handlePointerEnter); + btn.addEventListener("pointerleave", handlePointerLeave); + btn.addEventListener("pointermove", handleMove); + // Mark touchmove as passive for better performance + btn.addEventListener("touchmove", handleTouchMove, { passive: true }); + + return () => { + btn.removeEventListener("pointerenter", handlePointerEnter); + btn.removeEventListener("pointerleave", handlePointerLeave); + btn.removeEventListener("pointermove", handleMove); + btn.removeEventListener("touchmove", handleTouchMove); + }; + }, []); + + // 3D tilt feedback + useEffect(() => { + const btn = buttonRef.current; + + if (!btn) return; + const handle3D = (e: PointerEvent) => { + const rect = btn.getBoundingClientRect(); + const x = e.clientX - rect.left; + const y = e.clientY - rect.top; + const midX = rect.width / 2; + const midY = rect.height / 2; + const rotY = ((x - midX) / midX) * 12; + const rotX = ((midY - y) / midY) * 12; + + btn.style.transform = `perspective(800px) rotateX(${rotX}deg) rotateY(${rotY}deg)`; + }; + const reset3D = () => { + btn.style.transform = `perspective(800px) rotateX(0deg) rotateY(0deg)`; + }; + + btn.addEventListener("pointermove", handle3D); + btn.addEventListener("pointerleave", reset3D); + + return () => { + btn.removeEventListener("pointermove", handle3D); + btn.removeEventListener("pointerleave", reset3D); + }; + }, []); + + // Navigate to href on click + const handleNavigate = (e: React.MouseEvent) => { + e.preventDefault(); + router.push(href); + } + + + // Click ripple + const handleClick = (e: React.MouseEvent) => { + const btn = buttonRef.current; + + if (!btn) return; + const circle = document.createElement("span"); + const rect = btn.getBoundingClientRect(); + const size = Math.max(rect.width, rect.height); + const x = e.clientX - rect.left - size / 2; + const y = e.clientY - rect.top - size / 2; + + circle.className = "ripple"; + Object.assign(circle.style, { + width: `${size}px`, + height: `${size}px`, + left: `${x}px`, + top: `${y}px`, + }); + btn.appendChild(circle); + setTimeout(() => btn.removeChild(circle), 600); + + // Navigate to href + handleNavigate(e); + }; + + return ( + // TODO: Add Background color, because it is transparent and looks awful in light mode +
+ +
+ ); +} diff --git a/lexikon/src/features/librarian/components/IndexTable.tsx b/lexikon/src/features/librarian/components/IndexTable.tsx new file mode 100644 index 0000000..f13b672 --- /dev/null +++ b/lexikon/src/features/librarian/components/IndexTable.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { + Table, + TableBody, + TableCell, + TableColumn, + TableHeader, + TableRow, + Select, + SelectItem, + Image, +} from "@heroui/react"; +import { useState } from "react"; +import { example_hero_image } from "shared/config/mockData"; +import { MoodleIndex, TermIndex } from "shared/domain/librarian"; +import { container } from "shared/styles/variants"; + +const tableHeaders = ["id", "name", "image"]; +const fallbackImage = example_hero_image; + +export default function IndexTable({ index }: { index: MoodleIndex }) { + const degProg = index.degree_program; + const [selectedSemesterId, setSelectedSemesterId] = useState( + degProg.semesters[0]?.id ?? "" + ); + + // Find the selected semester object + const selectedSemester: TermIndex | undefined = degProg.semesters.find( + (s) => s.id === selectedSemesterId + ); + + return ( +
+
+ + + + {tableHeaders.map((header) => ( + {header} + ))} + + + {/* Provide an empty array fallback if selectedSemester is undefined */} + {(selectedSemester?.courses ?? []).map((course) => ( + + {course.id} + {course.name} + +
+ +
+
+
+ ))} +
+
+
+
+ ); +} diff --git a/lexikon/src/features/librarian/mocks.ts b/lexikon/src/features/librarian/mocks.ts new file mode 100644 index 0000000..2c05e29 --- /dev/null +++ b/lexikon/src/features/librarian/mocks.ts @@ -0,0 +1,137 @@ +import { MoodleIndex } from 'shared/domain/librarian/moodleIndex'; + +const MOODLE_INDEX_MOCK_DATA: MoodleIndex = { + degree_program: { + id: '1157', + name: 'Computational and Data Science', + semesters: [ + { + id: '1745', + name: 'FS25', + courses: [ + { + id: '18863', + name: 'Programmierung und Prompt Engineering II', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1159522/course/overviewfiles/PythonBooks.PNG', + content_ressource_id: '1159522', + files: [], + }, + { + id: '18240', + name: 'Effiziente Algorithmen', + activity_type: '', + hero_image: '', + content_ressource_id: '1125554', + files: [], + }, + { + id: '18237', + name: 'Mathematik II', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1125458/course/overviewfiles/Integration_Differential_b.png', + content_ressource_id: '1125458', + files: [], + }, + { + id: '18236', + name: '2025 FS FHGR CDS Numerische Methoden', + activity_type: '', + hero_image: '', + content_ressource_id: '1125426', + files: [], + }, + { + id: '18228', + name: 'Datenbanken und Datenverarbeitung', + activity_type: '', + hero_image: '', + content_ressource_id: '1125170', + files: [], + }, + ], + }, + { + id: '1746', + name: 'HS24', + courses: [ + { + id: '18030', + name: 'Bootcamp Wissenschaftliches Arbeiten', + activity_type: '', + hero_image: '', + content_ressource_id: '1090544', + files: [], + }, + { + id: '17527', + name: 'Einführung in Data Science', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1059194/course/overviewfiles/cds1010.jpg', + content_ressource_id: '1059194', + files: [], + }, + { + id: '17526', + name: 'Einführung in Computational Science', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1059162/course/overviewfiles/cds_intro_sim.jpg', + content_ressource_id: '1059162', + files: [], + }, + { + id: '17525', + name: 'Mathematik I', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1059130/course/overviewfiles/AdobeStock_452512134.png', + content_ressource_id: '1059130', + files: [], + }, + { + id: '17507', + name: 'Programmierung und Prompt Engineering', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1058554/course/overviewfiles/10714013_33861.jpg', + content_ressource_id: '1058554', + files: [], + }, + { + id: '17505', + name: 'Algorithmen und Datenstrukturen', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1058490/course/overviewfiles/Bild1.png', + content_ressource_id: '1058490', + files: [], + }, + { + id: '17503', + name: 'Computer Science', + activity_type: '', + hero_image: + 'https://moodle.fhgr.ch/pluginfile.php/1058426/course/overviewfiles/Titelbild.jpg', + content_ressource_id: '1058426', + files: [], + }, + ], + }, + ], + }, + timestamp: '2025-04-27T14:20:11.354825+00:00', +}; + +// TODO: Remove this function when the crawler is ready +export async function getMockedMoodleIndex(): Promise { + return new Promise((resolve) => { + setTimeout(() => { + // Return a copy to prevent accidental mutation of the mock data + return resolve(JSON.parse(JSON.stringify(MOODLE_INDEX_MOCK_DATA))); + }, 1000); + }); +} diff --git a/lexikon/src/features/librarian/queries.ts b/lexikon/src/features/librarian/queries.ts new file mode 100644 index 0000000..4257d3f --- /dev/null +++ b/lexikon/src/features/librarian/queries.ts @@ -0,0 +1,30 @@ +'use client'; + +import { MoodleIndex } from 'shared/domain/librarian/moodleIndex'; +import { useQuery } from '@tanstack/react-query'; + +const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:8000'; + +async function fetchMoodleIndexFromApi(): Promise { + try { + const response = await fetch(`${API_BASE_URL}/api/librarian/moodle-index`); + if (!response.ok) { + throw new Error('Failed to fetch moodle index'); + } + return response.json(); + } catch (error) { + console.error('Error fetching moodle index:', error); + throw error; + } +} + +async function getMoodleIndex(): Promise { + return fetchMoodleIndexFromApi(); +} + +export function useMoodleIndex() { + return useQuery({ + queryKey: ['moodleIndex'], + queryFn: getMoodleIndex, + }); +} diff --git a/lexikon/src/features/librarian/tasks/api.ts b/lexikon/src/features/librarian/tasks/api.ts new file mode 100644 index 0000000..b7d458f --- /dev/null +++ b/lexikon/src/features/librarian/tasks/api.ts @@ -0,0 +1,104 @@ +import { LOCAL_API_BASE } from 'shared/config/api'; +import { + TaskInfo, + DownloadRequestCourse, +} from 'shared/domain/librarian/task'; + +type SummaryResponse = any; + +async function startTaskApi( + endpoint: string, + payload: TRequest +): Promise { + try { + const response = await fetch(`${LOCAL_API_BASE}/${endpoint}`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(payload), + }); + if (!response.ok) { + const errorText = await response.text(); + console.error( + `API Error starting task ${endpoint}: ${response.status} ${response.statusText}`, + errorText + ); + throw new Error( + `Failed to start task ${endpoint}: ${response.statusText}` + ); + } + return response.json(); + } catch (error) { + console.error('Error starting task:', error); + throw error; + } +} + +async function getTaskStatusApi( + endpoint: string, + taskId: string +): Promise { + try { + const response = await fetch( + `${LOCAL_API_BASE}/${endpoint}/status/${taskId}` + ); + if (!response.ok) { + const errorText = await response.text(); + console.error( + `API Error getting status for ${endpoint} task ${taskId}: ${response.status} ${response.statusText}`, + errorText + ); + throw new Error( + `Failed to get status for task ${endpoint}/${taskId}: ${response.statusText}` + ); + } + return response.json(); + } catch (error) { + console.error('Error getting task status:', error); + throw error; + } +} + +export const taskApi = { + startCrawl: async (noCache: boolean = false): Promise => { + return startTaskApi('crawl', { no_cache: noCache }); + }, + + getCrawlStatus: async (taskId: string): Promise => { + return getTaskStatusApi('crawl', taskId); + }, + + startDownload: async ( + courses: DownloadRequestCourse[] + ): Promise => { + return startTaskApi('download', { courses }); + }, + + getDownloadStatus: async (taskId: string): Promise => { + return getTaskStatusApi('download', taskId); + }, + + getSummary: async ( + termId: string, + courseId: string + ): Promise => { + try { + const response = await fetch( + `${LOCAL_API_BASE}/summaries/${termId}/${courseId}` + ); + if (!response.ok) { + const errorText = await response.text(); + console.error( + `API Error getting summary for ${termId}/${courseId}: ${response.status} ${response.statusText}`, + errorText + ); + throw new Error( + `Failed to get summary for ${termId}/${courseId}: ${response.statusText}` + ); + } + return response.json(); + } catch (error) { + console.error('Error getting summary:', error); + throw error; + } + }, +}; diff --git a/lexikon/src/features/librarian/tasks/components/TaskProgress.tsx b/lexikon/src/features/librarian/tasks/components/TaskProgress.tsx new file mode 100644 index 0000000..f3cc42d --- /dev/null +++ b/lexikon/src/features/librarian/tasks/components/TaskProgress.tsx @@ -0,0 +1,77 @@ +import { useEffect, useState } from 'react'; +import { Progress } from '@heroui/react'; +import { useTaskStatus } from '../hooks'; +import { taskHelpers } from '../helpers'; + +interface TaskProgressProps { + taskId: string; + taskType: string; + progressAriaLabel?: string; + onComplete?: (status: 'success' | 'error', error?: string) => void; +} + +export default function TaskProgress({ + taskId, + taskType, + progressAriaLabel = 'Task progress', + onComplete, +}: TaskProgressProps) { + const { taskInfo, error } = useTaskStatus(taskId, taskType); + + useEffect(() => { + if (taskInfo && taskHelpers.isTaskComplete(taskInfo) && onComplete) { + onComplete(taskInfo.state, taskHelpers.formatTaskError(taskInfo)); + } + }, [taskInfo, onComplete]); + + if (error) { + return ( +
+

{`Error: ${error.message}`}

+
+ ); + } + + if (!taskInfo) { + return ( +
+

Loading task information...

+
+ ); + } + + if (taskInfo.state === 'running') { + return ( +
+ +
+ ); + } + + if (taskInfo.state === 'error') { + return ( +
+

{taskHelpers.formatTaskError(taskInfo)}

+
+ ); + } + + if (taskInfo.state === 'success') { + return ( +
+

Task completed successfully.

+
+ ); + } + + return ( +
+

Task status: {taskInfo.state}.

+
+ ); +} diff --git a/lexikon/src/features/librarian/tasks/components/TaskStart.tsx b/lexikon/src/features/librarian/tasks/components/TaskStart.tsx new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/src/features/librarian/tasks/helpers.ts b/lexikon/src/features/librarian/tasks/helpers.ts new file mode 100644 index 0000000..49c6807 --- /dev/null +++ b/lexikon/src/features/librarian/tasks/helpers.ts @@ -0,0 +1,19 @@ +import { TaskInfo } from 'shared/domain/librarian/task'; + +export const taskHelpers = { + isTaskComplete: (taskInfo: TaskInfo): boolean => { + return taskInfo.state === 'success' || taskInfo.state === 'error'; + }, + + getProgressPercentage: (taskInfo: TaskInfo): number => { + return taskInfo.progress ? Math.round(taskInfo.progress * 100) : 0; + }, + + formatTaskError: (taskInfo: TaskInfo): string => { + return taskInfo.detail || 'An unknown error occurred'; + }, + + getDownloadLinks: (taskInfo: TaskInfo): string[] => { + return taskInfo.download_links || []; + }, +}; diff --git a/lexikon/src/features/librarian/tasks/hooks.ts b/lexikon/src/features/librarian/tasks/hooks.ts new file mode 100644 index 0000000..1b9178f --- /dev/null +++ b/lexikon/src/features/librarian/tasks/hooks.ts @@ -0,0 +1,44 @@ +import { useState, useEffect, useCallback } from 'react'; +import { TaskInfo } from 'shared/domain/librarian/task'; +import { useQuery } from '@tanstack/react-query'; +import { taskApi } from './api'; + +export function useTaskStatus(taskId: string | null, taskType: string) { + const [taskInfo, setTaskInfo] = useState(null); + const [error, setError] = useState(null); + + const handleUpdate = useCallback((info: TaskInfo) => { + setTaskInfo(info); + setError(null); + }, []); + + const handleError = useCallback((err: any) => { + console.error('TaskWebSocket Error:', err); + const newError = + err instanceof Error + ? err + : new Error( + String(err.message || 'WebSocket connection error') + ); + setError(newError); + setTaskInfo(null); + }, []); + + const { data, isError, error: queryError } = useQuery( + ['taskStatus', taskId, taskType], + () => taskApi.getTaskStatusApi(taskType, taskId!), + { + enabled: !!taskId, + onSuccess: handleUpdate, + onError: handleError, + } + ); + + useEffect(() => { + if (isError) { + handleError(queryError); + } + }, [isError, queryError, handleError]); + + return { taskInfo: data || taskInfo, error }; +} diff --git a/lexikon/src/features/librarian/tasks/websocket.ts b/lexikon/src/features/librarian/tasks/websocket.ts new file mode 100644 index 0000000..52eeca4 --- /dev/null +++ b/lexikon/src/features/librarian/tasks/websocket.ts @@ -0,0 +1,70 @@ +import { LOCAL_API_BASE } from 'shared/config/api'; +import { TaskInfo } from 'shared/domain/librarian/task'; + +export class TaskWebSocket { + private ws: WebSocket | null = null; + private taskId: string; + private taskType: string; + private onUpdate: (taskInfo: TaskInfo) => void; + private onError: (error: any) => void; + + constructor( + taskId: string, + taskType: string, + onUpdate: (taskInfo: TaskInfo) => void, + onError: (error: any) => void + ) { + this.taskId = taskId; + this.taskType = taskType; + this.onUpdate = onUpdate; + this.onError = onError; + } + + connect() { + this.ws = new WebSocket( + `ws://${LOCAL_API_BASE.replace(/^http/, 'ws')}/${this.taskType}/ws/${this.taskId}` + ); + + this.ws.onmessage = (event) => { + try { + const taskInfo = JSON.parse(event.data); + this.onUpdate(taskInfo); + + if ( + taskInfo.state === 'success' || + taskInfo.state === 'error' + ) { + this.disconnect(); + } + } catch (e) { + this.onError(new Error('Failed to parse WebSocket message')); + this.disconnect(); + } + }; + + this.ws.onerror = (errorEvent) => { + const error = new Error('WebSocket error'); + (error as any).event = errorEvent; + this.onError(error); + this.disconnect(); + }; + + this.ws.onclose = (event) => { + if (event.wasClean === false) { + this.onError( + new Error( + `WebSocket closed unexpectedly: ${event.code} ${event.reason || ''}`.trim() + ) + ); + } + this.ws = null; + }; + } + + disconnect() { + if (this.ws) { + this.ws.close(); + this.ws = null; + } + } +} diff --git a/lexikon/src/features/navigation/ToolBar.tsx b/lexikon/src/features/navigation/ToolBar.tsx new file mode 100644 index 0000000..9584155 --- /dev/null +++ b/lexikon/src/features/navigation/ToolBar.tsx @@ -0,0 +1,19 @@ +"use client"; + +import { type ReactNode } from "react"; +import { tv } from "tailwind-variants"; + + +const toolbar = tv({ + base: "bg-default-50 sticky flex items-center h-18 px-4 w-full shrink-0", +}); + +export default function Toolbar({ children }: { children: ReactNode }) { + return ( +
+
+ {children} +
+
+ ); +} diff --git a/lexikon/src/features/navigation/TopToolBar.tsx b/lexikon/src/features/navigation/TopToolBar.tsx new file mode 100644 index 0000000..484d041 --- /dev/null +++ b/lexikon/src/features/navigation/TopToolBar.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { type ReactNode } from "react"; +import Toolbar from "./ToolBar"; +import { useSidenavStore } from "./sidenav/store"; +import { SidebarClose, SidebarOpen } from "lucide-react"; +import IconButton from "shared/ui/primitives/IconButton"; + +type TopToolbarProps = { + children?: ReactNode; +}; + +export function TopToolbar({ children }: TopToolbarProps) { + const { open, toggleSidenav } = useSidenavStore(); + + return ( + + {!open && ( + + )} +
{children}
+
+ ); +} diff --git a/lexikon/src/features/navigation/UserArea.tsx b/lexikon/src/features/navigation/UserArea.tsx new file mode 100644 index 0000000..9aed66a --- /dev/null +++ b/lexikon/src/features/navigation/UserArea.tsx @@ -0,0 +1,113 @@ +"use client"; + +import { + Dropdown, + DropdownItem, + DropdownMenu, + DropdownTrigger, + User, + Button, +} from "@heroui/react"; +import { LogOut, Settings } from "lucide-react"; +import { useContext, useState } from "react"; +import { useAuth, signOut } from "shared/api/supabase"; +import { ResponsiveContext } from "shared/provider/ResponsiveProvider"; +import LoginModal from "shared/ui/auth/LoginModal"; +import ConfirmModal from "shared/ui/primitives/ConfirmModal"; + +export default function UserArea( + props: { + className?: string; + } & React.ComponentProps +) { + const { user } = useAuth(); + const isMobile = useContext(ResponsiveContext); + + // Modal state + const [isLoginOpen, setLoginOpen] = useState(false); + const [isLogoutOpen, setLogoutOpen] = useState(false); + const [isLoggingOut, setIsLoggingOut] = useState(false); + + const userData = { + image: user?.user_metadata?.avatar_url, + name: user?.user_metadata?.full_name, + email: user?.email, + }; + + // If not logged in, show login button + if (!user) { + return ( + <> + + setLoginOpen(false)} + /> + + ); + } + + // If logged in, show user dropdown + return ( + <> + + + + + + +

Signed in as

+

{user?.email}

+
+ } + > + Settings + + } + onPress={() => setLogoutOpen(true)} + > + Log Out + +
+
+ { + setIsLoggingOut(true); + try { + await signOut(); + } catch (e) { + // Optionally show error feedback + } finally { + setIsLoggingOut(false); + } + }} + isConfirmLoading={isLoggingOut} + > + Are you sure you want to log out? + + + ); +} diff --git a/lexikon/src/features/navigation/sidenav/SideNav.tsx b/lexikon/src/features/navigation/sidenav/SideNav.tsx new file mode 100644 index 0000000..102d81d --- /dev/null +++ b/lexikon/src/features/navigation/sidenav/SideNav.tsx @@ -0,0 +1,58 @@ +"use client"; + +import { Divider } from "@heroui/react"; +import { PanelLeftClose, PanelLeftOpen, Pin, PinOff } from "lucide-react"; +import React from "react"; +import UserArea from "../UserArea"; +import { useSidenavStore } from "./store"; +import { motion } from "framer-motion"; +import IconButton from "shared/ui/primitives/IconButton"; +import { ThemeSwitch } from "shared/ui/themeSwitch"; + +const sidenavVariants = { + open: { width: "20rem" }, + closed: { width: "0rem" }, +}; +const sidenavTransition = { duration: 0.5, ease: [0.25, 0.1, 0.25, 1] }; + +export const SideNav = ({ children }: { children: React.ReactNode }) => { + const { open, pinned, togglePinned, toggleSidenav } = useSidenavStore(); + + return ( + +
+
+ + +
+ + {/* Use theme-aware background color for divider */} + + + {/* Content area */} +
{children}
+ + {/* Use theme-aware background color for divider */} + + + {/* Footer with User Info and Theme Switch */} +
+ + +
+
+
+ ); +}; diff --git a/lexikon/src/features/navigation/sidenav/store.ts b/lexikon/src/features/navigation/sidenav/store.ts new file mode 100644 index 0000000..091df0b --- /dev/null +++ b/lexikon/src/features/navigation/sidenav/store.ts @@ -0,0 +1,24 @@ +import { create } from "zustand"; +import { persist, createJSONStorage } from 'zustand/middleware'; + +export interface SidenavState { + open: boolean; + pinned: boolean; + toggleSidenav: () => void; + togglePinned: () => void; +} + +export const useSidenavStore = create()( + persist( + (set) => ({ + open: false, + pinned: false, + toggleSidenav: () => set((state) => ({ open: !state.open })), + togglePinned: () => set((state) => ({ pinned: !state.pinned })), + }), + { + name: 'sidenav-storage', // name of the item in the storage (must be unique) + storage: createJSONStorage(() => localStorage), // (optional) by default, 'localStorage' is used + } + ) +) diff --git a/lexikon/src/features/study/components/CourseActions.tsx b/lexikon/src/features/study/components/CourseActions.tsx new file mode 100644 index 0000000..48a9418 --- /dev/null +++ b/lexikon/src/features/study/components/CourseActions.tsx @@ -0,0 +1,176 @@ +"use client"; +import { addToast } from "@heroui/toast"; +// filepath: src/features/study/components/_course/SummaryActions.tsx +import React, { useContext } from "react"; +import { useRouter, useParams } from "next/navigation"; +import { Input } from "@heroui/react"; +import { + ChevronLeft, + ChevronRight, + Edit, + Eye, + Plus, + Save, + Trash2, +} from "lucide-react"; + +import ConfirmModal from "shared/ui/primitives/ConfirmModal"; +import IconButton from "shared/ui/primitives/IconButton"; +import { StudyContext } from "../provider/StudyProvider"; + +export default function CourseActions() { + const ctx = useContext(StudyContext); + if (!ctx) throw new Error("CourseActions must be used within StudyProvider"); + + const { + mode, + busy, + dirty, + onModeChange, + navigateSummary, + selectedSummary, + setSelectedSummary, + onSave, + onCreate, + onDelete, + summaryName, + summaries, + } = ctx; + const router = useRouter(); + const params = useParams<{ courseId: string }>(); + const courseId = params.courseId; + + // Local modal states + const [isNewOpen, setIsNewOpen] = React.useState(false); + const [isDeleteOpen, setIsDeleteOpen] = React.useState(false); + const [newName, setNewName] = React.useState(""); + + const handleNavigate = (direction: "next" | "prev") => { + if (!selectedSummary || !summaries.length || !courseId) return; + const currentIndex = summaries.findIndex( + (summary) => summary.summary_id === selectedSummary.summary_id + ); + let newIndex = currentIndex; + if (direction === "next" && currentIndex < summaries.length - 1) { + newIndex = currentIndex + 1; + } + if (direction === "prev" && currentIndex > 0) { + newIndex = currentIndex - 1; + } + if (newIndex !== currentIndex && summaries[newIndex]) { + setSelectedSummary(summaries[newIndex]); + } + }; + + // After creating a summary, navigate to the new summary + const handleCreate = async (name: string) => { + const before = summaries.length; + await onCreate(name); + // Wait for summaries to update (could use effect, but simple polling for now) + setTimeout(() => { + const after = ctx.summaries; + if (after.length > before && courseId) { + const newSummary = after[after.length - 1]; + router.push( + `/study/${courseId}/summary/${newSummary.summary_id}` + ); + } + }, 300); + }; + + return ( + <> + handleNavigate("prev")} /> + handleNavigate("next")} + /> + setIsNewOpen(true)} + /> + + {mode === "edit" ? ( + { + // Use the real handleSave for feedback, not the context's onSave (which is void) + const result = await ctx.handleSave?.(); + if (!result || !result.error) { + addToast({ + title: "Saved", + description: "Summary saved successfully.", + color: "success", + timeout: 2500, + shouldShowTimeoutProgress: true, + }); + } else { + addToast({ + title: "Save failed", + description: + result.error || + "An error occurred while saving.", + color: "danger", + timeout: 4000, + shouldShowTimeoutProgress: true, + }); + } + }} + /> + ) : ( + setIsDeleteOpen(true)} + /> + )} + + onModeChange(mode === "edit" ? "view" : "edit")} + disabled={!selectedSummary && mode === "edit"} + /> + + {/* Modal – Neues Kapitel */} + { + if (!newName.trim()) return; + handleCreate(newName); + }} + confirmText="Create" + confirmButtonColor="primary" + > + setNewName(e.target.value)} + /> + + + {/* Modal – Kapitel löschen */} + +

+ Are you sure you want to delete chapter " + {selectedSummary?.chapter}"? +

+
+ + ); +} diff --git a/lexikon/src/features/study/components/CourseContent.tsx b/lexikon/src/features/study/components/CourseContent.tsx new file mode 100644 index 0000000..2c770e2 --- /dev/null +++ b/lexikon/src/features/study/components/CourseContent.tsx @@ -0,0 +1,19 @@ +"use client"; + +import { Spinner } from "@heroui/react"; +import MDXPreview from "shared/ui/markdown/MDXPreview"; + +export const CourseContent = ({ value }: { value: string }) => { + return ( + <> + {value === null ? ( + + ) : ( + + )} + + ); +}; diff --git a/lexikon/src/features/study/components/CourseEdit.tsx b/lexikon/src/features/study/components/CourseEdit.tsx new file mode 100644 index 0000000..d6121b8 --- /dev/null +++ b/lexikon/src/features/study/components/CourseEdit.tsx @@ -0,0 +1,42 @@ +import { useContext } from "react"; +import { StudyContext } from "../provider/StudyProvider"; +import { useSummary } from "../hooks/useSummary"; +import { Input, Spinner } from "@heroui/react"; +import Editor from "shared/ui/code/Editor"; + +export default function CourseEdit() { + const { selectedSummary, summaryName, setSummaryName } = + useContext(StudyContext)!; + + const { content, setContent } = useSummary(selectedSummary); + + return ( +
+ {content === null ? ( + + ) : ( + <> + { + setSummaryName(e.target.value); + }} + /> + + + )} +
+ ); +} diff --git a/lexikon/src/features/study/components/CourseHero.tsx b/lexikon/src/features/study/components/CourseHero.tsx new file mode 100644 index 0000000..4fb1614 --- /dev/null +++ b/lexikon/src/features/study/components/CourseHero.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { Image } from "@heroui/react"; +import { useContext } from "react"; +import { example_hero_image } from "shared/config/mockData"; +import { StudyContext } from "../provider/StudyProvider"; + +const CourseHero = ({ full }: { full?: boolean }) => { + const { course } = useContext(StudyContext)!; + const imageSrc = course?.hero_image || example_hero_image; + + return ( +
+ {`Hero + {/* Transparent overlay */} +
+ + {/* Course title and description */} +
+ ); +}; + +export default CourseHero; diff --git a/lexikon/src/features/study/components/CourseList.tsx b/lexikon/src/features/study/components/CourseList.tsx new file mode 100644 index 0000000..0869697 --- /dev/null +++ b/lexikon/src/features/study/components/CourseList.tsx @@ -0,0 +1,278 @@ +"use client"; + +import { Button, Link, PressEvent } from "@heroui/react"; +import React, { useState, useRef, useEffect } from "react"; +import { useRouter } from "next/navigation"; +import { + AnimatePresence, + motion, + useMotionValue, + useTransform, + useAnimation, +} from "framer-motion"; +import { Star } from "lucide-react"; +import useCoursesModulesStore from "../stores/coursesStore"; +import { CourseModule } from "shared/domain/course"; +import { toggleCourseFavorite } from "../queries/CRUD-Courses"; + +// ──────────────────────────────────────────────────────────────────────────────── +// Shared helpers +// ──────────────────────────────────────────────────────────────────────────────── +/** Drag distance (in px) required to toggle favorite on mobile swipe item */ +const DRAG_THRESHOLD = 120; + +/** + * Small wrapper around the Lucide Star so we don’t have to repeat the + * `fill={filled ? "currentColor" : "none"}` boiler‑plate everywhere. + */ +const FavoriteStar: React.FC<{ filled: boolean; size?: number }> = ({ + filled, + size = 20, +}) => ( + +); + +export type CourseListItemProps = { + courseModule: CourseModule; + onClick?: () => void; +}; + +export const CourseListItem: React.FC = ({ + courseModule, +}: { + courseModule: CourseModule; +}) => { + const [fav, setFav] = useState(!!courseModule.is_user_favorite); + const { reloadCoursesModules: reload } = useCoursesModulesStore(); + const handlefavoriteToggle = async (e: PressEvent) => { + try { + const newState = await toggleCourseFavorite(courseModule, !fav); + setFav(newState); + reload(); + } catch (error) { + console.error("Failed to toggle favorite status:", error); + } + }; + + return ( + + + + {courseModule.module_name} + + + {courseModule.module_code} + + +
+ +
+
+ ); +}; + +export type MobileCourseListItemProps = { + courseModule: CourseModule; + onClick?: () => void; + className?: string; +}; +export const MobileCourseListItem: React.FC = ({ + courseModule, + className = "", +}) => { + const router = useRouter(); + const handlePress = () => { + router.push( + // `/study/${courseModule.course_id}-${courseModule.module_code}` + `/study/${courseModule.course_id}` + ); + }; + + return ( + + ); +}; + +// Swipeable item for mobile list with drag-to-fav logic +export type SwipeableModuleItemProps = { + courseModule: CourseModule; + onSwipe: (courseModule: CourseModule) => void; + onClick?: () => void; + className?: string; +}; +export const SwipeableModuleItem: React.FC = ({ + courseModule, + onSwipe, + className = "", +}) => { + const router = useRouter(); + const isDraggingRef = useRef(false); + const suppressClickRef = useRef(false); + const x = useMotionValue(0); + const controls = useAnimation(); + const [favState, setFavState] = useState( + !!courseModule.is_user_favorite + ); + const [previewFav, setPreviewFav] = useState(favState); + const isOverRef = useRef(false); + + useEffect(() => { + const fav = !!courseModule.is_user_favorite; + setFavState(fav); + setPreviewFav(fav); + }, [courseModule.is_user_favorite]); + + useEffect(() => { + x.on("change", (latest: number) => { + // only animate icon scale during active drag + if (!isDraggingRef.current) return; + if (latest > DRAG_THRESHOLD && !isOverRef.current) { + isOverRef.current = true; + setPreviewFav(!favState); + controls.start({ + scale: [1.4, 1], + transition: { + type: "spring", + stiffness: 300, + damping: 20, + }, + }); + } else if (latest <= DRAG_THRESHOLD && isOverRef.current) { + isOverRef.current = false; + setPreviewFav(favState); + controls.start({ + scale: [1.4, 1], + transition: { + type: "spring", + stiffness: 300, + damping: 20, + }, + }); + } + }); + }, [x, controls, favState]); + const bgOpacity = useTransform(x, [0, DRAG_THRESHOLD], [0, 1]); + const handleClick = () => { + if (suppressClickRef.current) return; + router.push(`/study/${courseModule.course_id}`); + }; + const actionIcon = ; + + return ( + + + + + + {actionIcon} + + + { + suppressClickRef.current = true; + setTimeout(() => { + suppressClickRef.current = false; + }, 300); + if (previewFav !== favState) { + setFavState(previewFav); + onSwipe(courseModule); + } + isOverRef.current = false; + x.set(0); + isDraggingRef.current = false; + }} + onDragStart={() => { + isDraggingRef.current = true; + }} + > + + + + + ); +}; + +export type CourseListHeaderProps = { + title: string; +}; + +export const CourseListGroupHeader: React.FC = ({ + title, +}) => ( +
+

{title}

+
+); + +export type ModuleListGroupProps = { + title: string; + items: CourseListItemProps[]; +}; + +const ModuleListGroup: React.FC = ({ title, items }) => ( +
+ + {items.map((item) => ( + + ))} +
+); + +export default ModuleListGroup; diff --git a/lexikon/src/features/study/components/CoursePath.tsx b/lexikon/src/features/study/components/CoursePath.tsx new file mode 100644 index 0000000..80c88a7 --- /dev/null +++ b/lexikon/src/features/study/components/CoursePath.tsx @@ -0,0 +1,76 @@ +"use client"; +import { useContext } from "react"; +import { StudyContext } from "../provider/StudyProvider"; +import { Select, SelectItem } from "@heroui/react"; +import { ChevronsUpDown } from "lucide-react"; +import type { CourseSummary } from "shared/domain/summary"; + +type SummarySelectorProps = { + summaries: CourseSummary[]; + selectedSummary: CourseSummary | null; + summaryName: string; +}; + +const SummarySelector = ({ + summaries, + selectedSummary, + summaryName, +}: SummarySelectorProps) => { + const { setSelectedSummary } = useContext(StudyContext)!; + const defaultKey = selectedSummary?.summary_id ?? summaries[0]?.summary_id; + + return ( + + ); +}; + +export default function CoursePath() { + const { + course, + summaries, + selectedSummary, + summaryName, + setSelectedSummary, + } = useContext(StudyContext)!; + return ( +
+ + {course?.module_name} + + / + +
+ ); +} diff --git a/lexikon/src/features/study/hooks/useCourse.ts b/lexikon/src/features/study/hooks/useCourse.ts new file mode 100644 index 0000000..e2f8295 --- /dev/null +++ b/lexikon/src/features/study/hooks/useCourse.ts @@ -0,0 +1,30 @@ +import { useState, useEffect } from "react"; +import { CourseModule } from "shared/domain/course"; +import { fetchCourse } from "../queries/CRUD-Courses"; + +export function useCourse(courseid: number) { + const [course, setCourse] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + if (!courseid) return; + setLoading(true); + fetchCourse(courseid).then((course) => { + if (!course) { + setError("Course not found"); + setLoading(false); + return; + } + setCourse(course); + setLoading(false); + }).catch((error) => { + setError(error.message); + setLoading(false); + }); + }, [courseid]); + + return { course, loading, error }; +}; + +export default useCourse; diff --git a/lexikon/src/features/study/hooks/useSummaries.ts b/lexikon/src/features/study/hooks/useSummaries.ts new file mode 100644 index 0000000..d216fe6 --- /dev/null +++ b/lexikon/src/features/study/hooks/useSummaries.ts @@ -0,0 +1,53 @@ +"use client"; + +import { useState, useEffect } from "react"; +// Use the shared CourseSummary type +import { CourseSummary } from "shared/domain/summary"; +// Import the server action +import { fetchSummaries } from "../queries/CRUD-Summaries"; + +/** + * Client-side hook to fetch summaries for a given course. + * Disables fetching if courseId is falsy. + */ +export function useSummaries(courseId: number) { + const [summaries, setSummaries] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + // Fetch summaries from the server + const fetch = async () => { + if (!courseId) return; + setLoading(true); + setError(null); + try { + const data = await fetchSummaries(courseId); + + // Sort by chapter name + data.sort((a, b) => { + const nameA = (a.chapter ?? "").toLowerCase(); + const nameB = (b.chapter ?? "").toLowerCase(); + if (nameA < nameB) return -1; + if (nameA > nameB) return 1; + return 0; + }); + + setSummaries(data); + } catch (error: any) { + setError(error.message ?? "An unexpected error occurred"); + } finally { + setLoading(false); + } + }; + + // Fetch on mount and when courseId changes + useEffect(() => { + fetch(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [courseId]); + + // Expose a reload/refetch function + const refetch = fetch; + + return { summaries, loading, error, refetch }; +} diff --git a/lexikon/src/features/study/hooks/useSummary.ts b/lexikon/src/features/study/hooks/useSummary.ts new file mode 100644 index 0000000..4d6b911 --- /dev/null +++ b/lexikon/src/features/study/hooks/useSummary.ts @@ -0,0 +1,57 @@ +"use client"; + +import { useEffect, useCallback } from "react"; +import { CourseSummary } from "shared/domain/summary"; +import { useSummaryStore } from "../stores/summaryStore"; + + +interface useSummaryProps { + content: string; + setContent: (content: string) => void; + saveContent: () => Promise<{ error?: string } | undefined>; + loading: boolean; + error: string | null; + renameSummary: (name: string, termCode: string) => Promise<{ error?: string } | undefined>; +} + + +// Custom hook to manage the content of the current summary (singleton/global) +export function useSummary(summary: CourseSummary | null): useSummaryProps { + const summaryId = summary?.summary_id; + const content = useSummaryStore((s) => (summaryId ? s.content[summaryId] ?? "" : "")); + const loading = useSummaryStore((s) => (summaryId ? s.loading[summaryId] ?? false : false)); + const error = useSummaryStore((s) => (summaryId ? s.error[summaryId] ?? null : null)); + const setContent = useCallback((c: string) => { + if (summaryId) useSummaryStore.getState().setContent(summaryId, c); + }, [summaryId]); + const fetchContent = useSummaryStore((s) => s.fetchContent); + const saveContent = useCallback(async () => { + if (summary && summaryId) { + return await useSummaryStore.getState().saveContent(summary); + } + return { error: "No summary selected" }; + }, [summary, summaryId]); + + const renameSummary = useCallback(async (name: string, termCode: string) => { + if (summary && summaryId) { + return await useSummaryStore.getState().renameSummary(summary, name); + } + return { error: "No summary selected" }; + }, [summary, summaryId]); + + // Fetch content when summary changes + useEffect(() => { + if (summary && summaryId) { + fetchContent(summary); + } + }, [summary, summaryId, fetchContent]); + + return { + content, + setContent, + loading, + error, + saveContent, + renameSummary, + }; +} diff --git a/lexikon/src/features/study/provider/StudyProvider.tsx b/lexikon/src/features/study/provider/StudyProvider.tsx new file mode 100644 index 0000000..bb78c53 --- /dev/null +++ b/lexikon/src/features/study/provider/StudyProvider.tsx @@ -0,0 +1,151 @@ +"use client"; +import { createContext, useState, useEffect, ReactNode } from "react"; +import { CourseSummary } from "shared/domain/summary"; +import { + createSummary, + deleteSummary, + updateSummary, +} from "../queries/CRUD-Summaries"; +import { useSummaries } from "../hooks/useSummaries"; +import useCourse from "../hooks/useCourse"; +import { CourseModule } from "shared/domain/course"; +import useTermStore from "../stores/termStore"; +import { useSummary } from "../hooks/useSummary"; + +interface StudyContextProps { + course: CourseModule | null; + summaries: CourseSummary[]; + selectedSummary: CourseSummary | null; + setSelectedSummary: (summary: CourseSummary | null) => void; + navigateSummary: (direction: "next" | "prev") => void; + mode: "view" | "edit"; + onModeChange: (mode: "view" | "edit") => void; + dirty: boolean; + busy: boolean; + setBusy: (busy: boolean) => void; + onCreate: (name: string) => Promise; + onSave: () => Promise<{ success: boolean; error?: string }>; + onDelete: () => Promise; + handleSave?: () => Promise<{ success: boolean; error?: string }>; + summaryName: string; + setSummaryName: (name: string) => void; +} + +export const StudyContext = createContext( + undefined +); + +interface StudyProviderProps { + children: ReactNode; + courseId: number; +} + +export default function StudyProvider({ + children, + courseId, +}: StudyProviderProps) { + const { + summaries, + loading: summariesLoading, + error: summariesError, + refetch, + } = useSummaries(courseId); + const { course } = useCourse(courseId); + + const [selectedSummary, setSelectedSummary] = + useState(null); + + const [dirty, setDirty] = useState(false); + const [busy, setBusy] = useState(false); + const [mode, setMode] = useState<"view" | "edit">("view"); + const [summaryName, setSummaryName] = useState( + selectedSummary?.chapter || "" + ); + const chapterCount = summaries.length; + const { selectedTerm } = useTermStore(); + const { content } = useSummary(selectedSummary); + + // Keep summaryName in sync with selectedSummary + useEffect(() => { + setSummaryName(selectedSummary?.chapter || ""); + }, [selectedSummary]); + + // Only create and refetch, let the component handle navigation + const handleCreate = async (name: string) => { + await createSummary(courseId, name, selectedTerm?.semester_code ?? ""); + await refetch(); + }; + const handleDelete = async () => { + if (!selectedSummary) return; + await deleteSummary(selectedSummary); + await refetch(); + }; + + // Only update state, let the component handle navigation + const navigateSummary = (direction: "next" | "prev") => { + if (!selectedSummary) return; + const currentIndex = summaries.findIndex( + (summary) => summary.summary_id === selectedSummary.summary_id + ); + let newIndex = currentIndex; + if (direction === "next" && currentIndex < chapterCount - 1) { + newIndex = currentIndex + 1; + } + if (direction === "prev" && currentIndex > 0) { + newIndex = currentIndex - 1; + } + if (newIndex !== currentIndex && summaries[newIndex]) { + setSelectedSummary(summaries[newIndex]); + } + }; + + // Save handler that updates summary using updateSummary only + const handleSave = async (): Promise<{ + success: boolean; + error?: string; + }> => { + if (!selectedSummary) + return { success: false, error: "No summary selected" }; + const error = await updateSummary(selectedSummary, { + newName: summaryName, + content: content, + }); + if (!error) { + setDirty(false); + return { success: true }; + } + // Ensure error is always a string + return { + success: false, + error: + typeof error === "string" + ? error + : (error?.error ?? "Unknown error"), + }; + }; + + const contextValue = { + course, + selectedSummary, + setSelectedSummary, + navigateSummary, + mode, + onModeChange: setMode, + dirty, + busy: busy || summariesLoading, + setBusy, + onCreate: handleCreate, + onSave: handleSave, + onDelete: handleDelete, + handleSave, + summaryName, + setSummaryName, + summaries, + }; + + return ( + + {children} + + ); +} diff --git a/lexikon/src/features/study/queries/CRUD-Courses.ts b/lexikon/src/features/study/queries/CRUD-Courses.ts new file mode 100644 index 0000000..56f88bc --- /dev/null +++ b/lexikon/src/features/study/queries/CRUD-Courses.ts @@ -0,0 +1,64 @@ +import { supaBrowser as supabase } from "shared/api/supabase"; +import { CourseModule } from "shared/domain/course"; +import { Term } from "shared/domain/term"; + +export async function fetchCourse(courseid: number): Promise { + const { data, error } = await supabase + .schema("library") + .from("mv_course_with_module") // TODO: MAke a better view + .select("*") + .eq("course_id", courseid) + .single(); + + if (error) throw error; + + return data as CourseModule; +} + +export async function fetchCoursesModules(term: Term): Promise { + const { data, error } = await supabase + .schema("library") + .from("mv_course_with_module") // TODO: MAke a better view + .select("*") + .eq("semester_id", term.semester_id) + + const { data: favs, error: favsError } = await supabase + .schema("library") + .from("module_favorites") + .select("module_id, user_uuid") + .eq("user_uuid", (await supabase.auth.getUser()).data.user?.id); + + if (!favsError) { + return data!.map((courseModule) => { + const is_user_favorite = favs.some( + (fav) => fav.module_id === courseModule.module_id + ); + return { ...courseModule, is_user_favorite }; + }) as CourseModule[]; + } + + if (error) throw error; + + return data as CourseModule[]; +} + +/** + * Toggle the “favorite” flag for the current user. + * Returns true if the RPC says the row is now a favorite. + */ +export async function toggleCourseFavorite( + courseModule: CourseModule, + isfavorite: boolean, +): Promise { + + const { data, error } = await supabase + .schema("library") + .rpc("upsert_module_favorites", { + p_favorite_state: isfavorite, + p_module_id: courseModule.module_id, + }); + + if (error) throw error; + + return data === "true"; +} diff --git a/lexikon/src/features/study/queries/CRUD-Summaries.ts b/lexikon/src/features/study/queries/CRUD-Summaries.ts new file mode 100644 index 0000000..8e58b2c --- /dev/null +++ b/lexikon/src/features/study/queries/CRUD-Summaries.ts @@ -0,0 +1,221 @@ +import { supaBrowser } from 'shared/api/supabase/browser'; +import { getNewSummaryPath, getSummaryPath, storagePaths } from "shared/config/paths"; +import { CourseSummary } from "shared/domain/summary"; + + +export async function getSummaryContent( + summary: CourseSummary, +) { + + if (!summary.bucket_id || !summary.object_path) { + console.error("Invalid summary file reference"); + + return; + } + + const { data, error: fetchError } = await supaBrowser.storage + .from(summary.bucket_id) + .download(summary.object_path); + + if (fetchError || !data) { + console.error("Failed to download summary file", fetchError); + + return; + } + + const text = await data.text(); + + return text; +} + +/** + * Create a new chapter summary for a given course and name. + */ + +export async function createSummary( + courseId: number, + name: string, + termCode: string, +): Promise { + if (!courseId || !name.trim() || !termCode) { + console.error( + "Missing parameters or empty chapter name", + courseId, + name, + termCode, + ); + return; + } + const filePath = getSummaryPath( + termCode, + courseId, + name.trim().replaceAll(" ", "-"), + ); + const bucketId = storagePaths.moduleContent.bucket; + // 1. Upload a empty markdown file to Supabase, so we have an objectid + const { data: storageData, error: storageError } = await supaBrowser.storage + .from(bucketId) + .upload(filePath, `# ${name}`, { + cacheControl: "3600", + upsert: true, + }); + + if (storageError) { + console.error("Error uploading file:", storageError); + + return; + } + + if (!storageData) { + console.error("No data returned from Supabase"); + + return; + } + const createdAtPath = storageData.path; + const objectId = storageData.id; + + // 2. Add an entry of the chapter to the database + const { data: createdChapter, error: upsertError } = await supaBrowser + .schema("library") + .rpc("upsert_summary_chapter", { + p_chapter: name, + p_course_id: courseId, + p_filename: createdAtPath, + p_object_uuid: objectId, + }) + .single(); + + if (upsertError) { + console.error("Error upserting chapter:", upsertError); + + return; + } + + if (!createdChapter) { + console.error("No data returned from Supabase"); + + return; + } + + return createdChapter as CourseSummary; +} + +/** + * Deletes a chapter summary and entry from the database and storage. + */ +export async function deleteSummary(summary: CourseSummary): Promise { + if (!summary || !summary.summary_id) { + console.error("Missing summary or summary_id"); + + return null; + } + const { data, error } = await supaBrowser + .schema("library") + .rpc("delete_summary", { p_summary_id: summary.summary_id! }); + + if (error) throw error; + + return data; +} + +/** + * Updates a chapter summary: can rename and/or update content. + * If both are provided, rename happens first. + */ +export async function updateSummary( + summary: CourseSummary, + options: { + newName?: string; + content?: string; + } +): Promise<{ error?: string } | undefined> { + if (!summary) { + return { error: "Missing summary" }; + } + + const { newName, content } = options; + + // Handle rename if all required params are present + if ( + newName && newName.trim() !== "" + ) { + const currentPath = summary.object_path; + if (!currentPath) { + return { error: "summary.object_path is null or undefined" }; + } + // Extract directory and replace filename + const newFilePath = getNewSummaryPath(currentPath, newName); + const bucketId = storagePaths.moduleContent.bucket; + const { error: storageError } = await supaBrowser.storage + .from(bucketId) + .move(currentPath, newFilePath); + if (storageError) { + return { error: storageError.message || "Error moving file" }; + } + // Rename chapter via RPC; returns trimmed chapter name + const { data: trimmedChapter, error: renameError } = await supaBrowser + .schema("library") + .rpc( + "rename_chapter", + { p_new_chapter: newName.trim(), p_summary_id: summary.summary_id! } + ) + .single(); + + if (renameError) { + return { error: renameError.message || "Error renaming chapter" }; + } + if (trimmedChapter === null) { + return { error: "Error renaming chapter" }; + } + // Update summary with trimmed name and new path + summary.chapter = trimmedChapter; + summary.object_path = newFilePath; + } + + console.log("Updating summary content", { + + content, + }); + + // Handle content update if requested + if (typeof content === "string") { + const path = summary.object_path; + const bucketId = summary.bucket_id; + + + const { data: uploadResult, error } = await supaBrowser.storage + .from(bucketId!) + .update(path!, content, { + cacheControl: "3600", + upsert: true, + }); + + console.debug("Upload result", uploadResult); + + if (error) { + return { error: error.message || "Error updating file" }; + } + if (!uploadResult) { + return { error: "No data returned from Supabase" }; + } + } + + return undefined; +} + +/** + * Fetches all chapter summaries for a course. + * @param courseId The ID of the course to fetch summaries for. + */ +export async function fetchSummaries(courseId: number): Promise { + + const { data, error } = await supaBrowser + .schema("library") + .from("summary") + .select("*") + .eq("course_id", courseId ?? 0); + + if (error) throw error; + + return (data ?? []) as CourseSummary[]; +} diff --git a/lexikon/src/features/study/queries/CRUD-Terms.ts b/lexikon/src/features/study/queries/CRUD-Terms.ts new file mode 100644 index 0000000..8582440 --- /dev/null +++ b/lexikon/src/features/study/queries/CRUD-Terms.ts @@ -0,0 +1,57 @@ +import { supaServer } from "shared/api/supabase/server"; +import { Term } from "shared/domain/term"; +import { supaBrowser as supabase } from "shared/api/supabase/browser"; + +export async function fetchTerms(): Promise { + const { data, error } = await supabase + .schema("library") + .from("semester") + .select("*") + // Sorting by year, then by FS before HS + .order("semester_code", { ascending: false }); + + if (error) throw error; + if (!data) return []; + + // Custom sort: by year, then FS before HS + return (data as Term[]).sort((a: Term, b: Term) => { + const parse = (code: string) => { + // code: e.g. "FS24" or "HS23" + const match = code.match(/^(FS|HS)(\d{2})$/); + if (!match) return { sem: "", year: 0 }; + const [, sem, year] = match; + return { sem, year: Number(year) }; + }; + const aParsed = parse(a.semester_code); + const bParsed = parse(b.semester_code); + + // Sort by year descending + if (aParsed.year !== bParsed.year) { + return bParsed.year - aParsed.year; + } + // FS before HS + if (aParsed.sem !== bParsed.sem) { + return aParsed.sem === "FS" ? -1 : 1; + } + return 0; + }); +} + + +/** + * Return all terms that belong to a module + */ +export async function fetchModuleTerms(moduleId: number): Promise { + if (!Number.isFinite(moduleId)) throw new Error("Invalid moduleId"); + + const supabase = + await supaServer(); + const { data, error } = await supabase + .schema("library") + .rpc("get_terms_per_module", { p_module_id: moduleId }); + + if (error) throw error; + if (!data) return []; + + return data as Term[]; +} diff --git a/lexikon/src/features/study/stores/coursesStore.ts b/lexikon/src/features/study/stores/coursesStore.ts new file mode 100644 index 0000000..6892d37 --- /dev/null +++ b/lexikon/src/features/study/stores/coursesStore.ts @@ -0,0 +1,68 @@ +"use client"; +import { CourseModule } from "shared/domain/course"; +import { create } from "zustand"; +import { fetchCoursesModules } from "../queries/CRUD-Courses"; +import { Term } from "shared/domain/term"; + +interface CoursesModulesState { + coursesModules: CourseModule[]; + isLoading: boolean; + term: Term | null; + error: string | null; + loadCoursesModules: (term: Term) => Promise; + reloadCoursesModules: () => void; +} + +export const useCoursesModulesStore = create((set) => ({ + coursesModules: [], + isLoading: false, + error: null, + term: null, + loadCoursesModules: async (term) => { + set({ isLoading: true, error: null }); // Reset error on new load attempt + try { + const coursesModules = await fetchCoursesModules(term); + + set({ coursesModules: coursesModules, isLoading: false, term: term }); + } catch (err) { + // Extract the error message for serialization + let errorMessage = "An unknown error occurred"; + if (err instanceof Error) { + errorMessage = err.message; + } else if (typeof err === 'string') { + errorMessage = err; + } else if (err && typeof err === 'object' && 'message' in err && typeof err.message === 'string') { + // Handle cases where the error might be an object with a message property + errorMessage = err.message; + } + set({ error: errorMessage, isLoading: false }); + } + }, + reloadCoursesModules: async () => { + + const { term } = useCoursesModulesStore.getState(); + if (term) { + set({ isLoading: true, error: null }); // Reset error on new load attempt + try { + const coursesModules = await fetchCoursesModules(term); + + set({ coursesModules: coursesModules, isLoading: false }); + } + catch (err) { + // Extract the error message for serialization + let errorMessage = "An unknown error occurred"; + if (err instanceof Error) { + errorMessage = err.message; + } else if (typeof err === 'string') { + errorMessage = err; + } else if (err && typeof err === 'object' && 'message' in err && typeof err.message === 'string') { + // Handle cases where the error might be an object with a message property + errorMessage = err.message; + } + set({ error: errorMessage, isLoading: false }); + } + } + }, +})); + +export default useCoursesModulesStore; diff --git a/lexikon/src/features/study/stores/summaryStore.ts b/lexikon/src/features/study/stores/summaryStore.ts new file mode 100644 index 0000000..11123b9 --- /dev/null +++ b/lexikon/src/features/study/stores/summaryStore.ts @@ -0,0 +1,45 @@ +import { create } from "zustand"; +import { CourseSummary } from "shared/domain/summary"; +import { + getSummaryContent +} from "../queries/CRUD-Summaries"; + +interface SummaryState { + content: Record; + loading: Record; + error: Record; + setContent: (summaryId: number, content: string) => void; + fetchContent: (summary: CourseSummary) => Promise; +} + +export const useSummaryStore = create((set) => ({ + content: {}, + loading: {}, + error: {}, + setContent: (summaryId, content) => + set((state) => ({ + content: { ...state.content, [summaryId]: content }, + })), + fetchContent: async (summary) => { + if (!summary?.summary_id) return; + set((state) => ({ + loading: { ...state.loading, [summary.summary_id!]: true }, + error: { ...state.error, [summary.summary_id!]: null }, + })); + try { + const content = await getSummaryContent(summary); + set((state) => ({ + content: { ...state.content, [summary.summary_id!]: content ?? "" }, + })); + } catch (e: any) { + set((state) => ({ + error: { ...state.error, [summary.summary_id!]: e?.message || "Failed to load summary" }, + content: { ...state.content, [summary.summary_id!]: "" }, + })); + } finally { + set((state) => ({ + loading: { ...state.loading, [summary.summary_id!]: false }, + })); + } + } +})); diff --git a/lexikon/src/features/study/stores/termStore.ts b/lexikon/src/features/study/stores/termStore.ts new file mode 100644 index 0000000..ea560bb --- /dev/null +++ b/lexikon/src/features/study/stores/termStore.ts @@ -0,0 +1,35 @@ +import { Term } from "shared/domain/term"; +import { create } from "zustand"; +import { fetchTerms } from "../queries/CRUD-Terms"; + +interface TermsState { + terms: Term[]; + selectedTerm: Term | undefined; + isLoading: boolean; + error: Error | null; + fetchTerms: () => Promise; + setSelectedTerm: (term: Term) => void; +} + +export const useTermStore = create((set) => ({ + terms: [], + selectedTerm: undefined, + setSelectedTerm: (term: Term) => { + set({ selectedTerm: term }); + }, + isLoading: false, + error: null, + fetchTerms: async () => { + set({ isLoading: true, error: null }); // Reset error state on new fetch + try { + const terms = await fetchTerms(); + set({ terms, selectedTerm: terms[0] || undefined, isLoading: false }); + } catch (err: unknown) { + // Ensure error is always an Error object + const error = err instanceof Error ? err : new Error(String(err)); + set({ error: error, isLoading: false, terms: [] }); // Clear terms on error + } + }, +})); + +export default useTermStore; diff --git a/lexikon/src/features/tsnePlot/TsnePlot.tsx b/lexikon/src/features/tsnePlot/TsnePlot.tsx new file mode 100644 index 0000000..2e5a420 --- /dev/null +++ b/lexikon/src/features/tsnePlot/TsnePlot.tsx @@ -0,0 +1,268 @@ +// src/components/TsnePlot.tsx +import { OrbitControls } from '@react-three/drei'; +import { Canvas } from '@react-three/fiber'; +import React, { useEffect, useMemo, useRef, useState } from 'react'; +import * as THREE from 'three'; +import { DataPoint, LoadedData } from '../../app/librarian/vspace/data'; // Pfad anpassen + +interface ScatterPointProps { + position: [number, number, number]; + color: THREE.ColorRepresentation; + pointData: DataPoint; + onPointerOver: (data: DataPoint | null, event: any) => void; + onPointerOut: () => void; + size?: number; + hoveredCluster: string | null; // Added to know which cluster is active +} + +const ScatterPoint: React.FC = ({ + position, + color, + pointData, + onPointerOver, + onPointerOut, + size = 0.5, // Standardgröße der Punkte + hoveredCluster, +}) => { + const meshRef = useRef(null!); + + // Determine if the point is part of the currently hovered cluster + const isInHoveredCluster = pointData.cluster === hoveredCluster; + // Determine if any cluster is currently being hovered + const isAnyClusterHovered = hoveredCluster !== null; + + // Calculate opacity: + // - If a cluster is hovered and this point is NOT in it, dim the point. + // - Otherwise (point is in the hovered cluster OR no cluster is hovered), full opacity. + const opacity = isAnyClusterHovered && !isInHoveredCluster ? 0.1 : 1.0; // Dimmed to 0.1, was 0.05 + + return ( + { + event.stopPropagation(); // Wichtig für Hover-Effekte mit mehreren Objekten + onPointerOver(pointData, event.nativeEvent); + }} + onPointerOut={() => { + onPointerOut(); + }} + > + + + + ); +}; + +interface TooltipState { + visible: boolean; + content: string; + x: number; + y: number; +} + +const TsnePlot: React.FC = () => { + const [dataPoints, setDataPoints] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + const [tooltip, setTooltip] = useState({ + visible: false, + content: '', + x: 0, + y: 0, + }); + const [hoveredCluster, setHoveredCluster] = useState(null); // State for hovered cluster + + // Farbpalette für Cluster + const clusterColors: { [key: string]: THREE.Color } = useMemo( + () => ({ + '0': new THREE.Color(0xff0000), // Rot + '1': new THREE.Color(0x00ff00), // Grün + '2': new THREE.Color(0x0000ff), // Blau + '3': new THREE.Color(0xffff00), // Gelb + '4': new THREE.Color(0xff00ff), // Magenta + '5': new THREE.Color(0x00ffff), // Cyan + '6': new THREE.Color(0xffa500), // Orange + '7': new THREE.Color(0x800080), // Lila + // Füge bei Bedarf mehr Farben für mehr Cluster hinzu + }), + [] + ); + const defaultColor = useMemo(() => new THREE.Color(0xaaaaaa), []); + + useEffect(() => { + const fetchData = async () => { + try { + setLoading(true); + setError(null); + const response = await fetch('/tsne_data.json'); + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + const jsonData: LoadedData = await response.json(); + + const columns = jsonData.columns; + const parsedPoints = jsonData.data.map((rowData) => { + const point: any = {}; + columns.forEach((col, index) => { + point[col] = rowData[index]; + }); + return { + ...point, + x: Number(point.x), + y: Number(point.y), + z: Number(point.z), + cluster: String(point.cluster), // Sicherstellen, dass Cluster ein String ist + } as DataPoint; + }); + setDataPoints(parsedPoints); + } catch (e: any) { + setError(e.message); + console.error('Fehler beim Laden der Daten:', e); + } finally { + setLoading(false); + } + }; + fetchData(); + }, []); + + // Log hoveredCluster changes + useEffect(() => { + console.log('hoveredCluster changed:', hoveredCluster); + }, [hoveredCluster]); + + const handlePointerOver = (data: DataPoint | null, event: MouseEvent) => { + if (data) { + console.log('Pointer Over:', data.cluster, data); // Log on pointer over + const formattedHoverText = data.hover_text.replace(/
/g, '\n'); + setTooltip({ + visible: true, + content: formattedHoverText, + x: event.clientX + 10, + y: event.clientY + 10, + }); + setHoveredCluster(data.cluster); // Set hovered cluster + } + }; + + const handlePointerOut = () => { + console.log('Pointer Out'); // Log on pointer out + setTooltip((prev) => ({ ...prev, visible: false })); + setHoveredCluster(null); // Reset hovered cluster + }; + + // Skalierungsfaktor für die Koordinaten. Muss ggf. angepasst werden. + const scaleFactor = 1; // Siehe Erklärung im vorherigen Codebeispiel + + if (loading) + return ( +
+ Lade Daten... +
+ ); + if (error) + return ( +
+ Fehler beim Laden der Daten: {error} +
+ ); + + return ( + <> + {tooltip.visible && ( +
+ {tooltip.content} +
+ )} + + + + + {/* + Statt InstancedMesh hier einzelne Meshes für jeden Punkt. + Für SEHR viele Punkte (>10k) wäre InstancedMesh oder Points besser. + Aber für einige Tausend ist das oft noch handhabbar und einfacher für Hover-Events. + Wenn die Performance ein Problem wird, muss man hier auf InstancedMesh umstellen. + Siehe Kommentar unten für einen alternativen InstancedMesh-Ansatz. + */} + {dataPoints.map((point, index) => ( + + ))} + + + + + ); +}; + +export default TsnePlot; diff --git a/lexikon/src/features/tsnePlot/hoverStore.ts b/lexikon/src/features/tsnePlot/hoverStore.ts new file mode 100644 index 0000000..93211bf --- /dev/null +++ b/lexikon/src/features/tsnePlot/hoverStore.ts @@ -0,0 +1,13 @@ +'use client'; + +import { create } from "zustand/react"; + +interface HoverState { + hoveredClusterId: string | null; + setHoveredClusterId: (clusterId: string | null) => void; +} + +export const useHoverStore = create((set) => ({ + hoveredClusterId: null, + setHoveredClusterId: (clusterId) => set({ hoveredClusterId: clusterId }), +})); diff --git a/lexikon/src/features/tsnePlot/tsnePlotView.tsx b/lexikon/src/features/tsnePlot/tsnePlotView.tsx new file mode 100644 index 0000000..0ba2d97 --- /dev/null +++ b/lexikon/src/features/tsnePlot/tsnePlotView.tsx @@ -0,0 +1,119 @@ +'use client'; + +import { OrbitControls, Sphere } from '@react-three/drei'; +import { Canvas, useFrame, useThree } from '@react-three/fiber'; +import React, { useEffect, useRef, useState } from 'react'; +import * as THREE from 'three'; +import { useHoverStore } from './hoverStore'; + +interface DataPoint { + id: string; + position: [number, number, number]; + color: string; + clusterId?: string; +} + +interface ClusterPointProps { + point: DataPoint; +} + +const ClusterPoint: React.FC = ({ point, ...props }) => { + const ref = useRef(null!); + const { hoveredClusterId, setHoveredClusterId } = useHoverStore(); + const [isHovered, setIsHovered] = useState(false); + + const isVisible = + hoveredClusterId === null || hoveredClusterId === point.clusterId; + + useFrame(() => { + if ( + ref.current && + ref.current.material instanceof THREE.MeshStandardMaterial + ) { + (ref.current.material as THREE.MeshStandardMaterial).opacity = + isVisible ? 1 : 0.2; + } + }); + + return ( + { + e.stopPropagation(); + setIsHovered(true); + if (point.clusterId) { + setHoveredClusterId(point.clusterId); + } + }} + onPointerOut={(e) => { + e.stopPropagation(); + setIsHovered(false); + setHoveredClusterId(null); + }} + > + + + ); +}; + +interface PlotPointsProps { + data: DataPoint[]; +} + +const PlotPoints: React.FC = ({ data }) => { + return ( + + {data.map((point) => ( + + ))} + + ); +}; + +const Controls = () => { + // Use OrbitControlsProps for the ref type if possible, or the specific implementation type + const controlsRef = useRef(null); // Using any temporarily to bypass the complex type issue + const { camera, gl } = useThree(); + + useEffect(() => { + const domElement = gl.domElement; + const currentControls = controlsRef.current; + + if (currentControls) { + // ... (existing comments and logic for OrbitControls) + } + + return () => { + // ... (cleanup logic) + }; + }, [gl.domElement, camera]); + + return ; +}; + +interface TsnePlotViewProps { + data: DataPoint[]; +} + +const TsnePlotView: React.FC = ({ data }) => { + return ( +
+ + + + + + +
+ ); +}; + +export default TsnePlotView; +export type { DataPoint }; diff --git a/lexikon/src/mdx-components.tsx b/lexikon/src/mdx-components.tsx new file mode 100644 index 0000000..bacd21a --- /dev/null +++ b/lexikon/src/mdx-components.tsx @@ -0,0 +1,9 @@ +import type { MDXComponents } from "mdx/types"; +import { mdxComponents } from "shared/ui/markdown/mdxComponents"; + +export function useMDXComponents(components: MDXComponents): MDXComponents { + return { + ...components, + ...mdxComponents, + }; +} diff --git a/lexikon/src/middleware.ts b/lexikon/src/middleware.ts new file mode 100644 index 0000000..5188118 --- /dev/null +++ b/lexikon/src/middleware.ts @@ -0,0 +1,14 @@ +// This file re-exports the authentication middleware for Next.js +import { updateSession } from "shared/api/supabase/server/middleware"; + +// Rename updateSession to middleware for Next.js to recognize +export { updateSession as middleware }; + +// Optional: configure which paths the middleware should apply to +// By default, middleware runs on all paths; adjust matcher to exclude static files or specific routes +export const config = { + matcher: [ + // All paths except Next.js internals and public routes + "/((?!_next/static|_next/image|favicon.ico|login|confirm|error|api).*)", + ], +}; diff --git a/lexikon/src/shared/api/librarian/client.ts b/lexikon/src/shared/api/librarian/client.ts new file mode 100644 index 0000000..ef03951 --- /dev/null +++ b/lexikon/src/shared/api/librarian/client.ts @@ -0,0 +1 @@ +// fetch wrapper to FastAPI gateway diff --git a/lexikon/src/shared/api/librarian/hooks.ts b/lexikon/src/shared/api/librarian/hooks.ts new file mode 100644 index 0000000..82f6dad --- /dev/null +++ b/lexikon/src/shared/api/librarian/hooks.ts @@ -0,0 +1 @@ +// useCrawlIndex, useDownloadTaskStatus diff --git a/lexikon/src/shared/api/supabase/browser.ts b/lexikon/src/shared/api/supabase/browser.ts new file mode 100644 index 0000000..89225f2 --- /dev/null +++ b/lexikon/src/shared/api/supabase/browser.ts @@ -0,0 +1,36 @@ +"use client"; // must run in the browser +import { createBrowserClient } from "@supabase/ssr"; + +export const supaBrowser = createBrowserClient( + process.env.NEXT_PUBLIC_SUPABASE_URL!, + process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, +); + +export async function signInWithGoogle( + redirectTo = `${window.location.origin}/auth/callback`, +) { + const { error, data } = await supaBrowser.auth.signInWithOAuth({ + provider: "google", + options: { redirectTo }, + }); + + if (error) throw error; + + // the page will redirect automatically; data is only for tests + return data; +} + +export async function signOut() { + const { error } = await supaBrowser.auth.signOut(); + if (error) throw error; +} + +/** + * Cleans the module-content bucket by removing all files. + * Only use during development. + */ +export async function emptyBucket() { + const { data, error } = await supaBrowser.storage.emptyBucket('module-content'); + if (error) throw error; + return data; +} diff --git a/lexikon/src/shared/api/supabase/hooks.ts b/lexikon/src/shared/api/supabase/hooks.ts new file mode 100644 index 0000000..394007a --- /dev/null +++ b/lexikon/src/shared/api/supabase/hooks.ts @@ -0,0 +1,41 @@ +"use client"; + +import { type Session, type User } from "@supabase/supabase-js"; + +import { useEffect, useState } from "react"; +import { supaBrowser } from "./browser"; + + + +/** + * React hook to subscribe to Supabase Auth state in browser. + * Returns the current user session, user object, and loading status. + */ +export function useAuth() { + const [user, setUser] = useState(null); + const [session, setSession] = useState(null); + const [isLoading, setIsLoading] = useState(true); + + useEffect(() => { + // Get initial session + supaBrowser.auth.getSession().then(({ data }: { data: { session: Session | null } }) => { + setSession(data.session); + setUser(data.session?.user ?? null); + setIsLoading(false); + }); + // Listen for auth changes + const { + data: { subscription }, + } = supaBrowser.auth.onAuthStateChange((_: unknown, session: Session | null) => { + setSession(session); + setUser(session?.user ?? null); + setIsLoading(false); + }); + + return () => { + subscription.unsubscribe(); + }; + }, [supaBrowser]); + + return { user, session, isLoading }; +} diff --git a/lexikon/src/shared/api/supabase/index.ts b/lexikon/src/shared/api/supabase/index.ts new file mode 100644 index 0000000..9b3a46b --- /dev/null +++ b/lexikon/src/shared/api/supabase/index.ts @@ -0,0 +1,2 @@ +export * from "./browser"; +export * from "./hooks"; diff --git a/lexikon/src/shared/api/supabase/server/db.ts b/lexikon/src/shared/api/supabase/server/db.ts new file mode 100644 index 0000000..1345c5e --- /dev/null +++ b/lexikon/src/shared/api/supabase/server/db.ts @@ -0,0 +1,25 @@ +"use server"; + +import { createServerClient } from "@supabase/ssr"; +import { cookies } from "next/headers"; + +export async function supaServer() { + const cookieStore = await cookies(); + + return createServerClient( + process.env.NEXT_PUBLIC_SUPABASE_URL!, + process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, + { + cookies: { + getAll: () => + cookieStore.getAll().map(({ name, value }) => ({ name, value })), + setAll: (cookiesToSet) => { + // Set cookies received from Supabase + cookiesToSet.forEach(({ name, value, options }) => + cookieStore.set(name, value, options), + ); + }, + }, + }, + ); +} diff --git a/lexikon/src/shared/api/supabase/server/index.ts b/lexikon/src/shared/api/supabase/server/index.ts new file mode 100644 index 0000000..66de36b --- /dev/null +++ b/lexikon/src/shared/api/supabase/server/index.ts @@ -0,0 +1,2 @@ +export * from "./db"; +export * from "./login"; diff --git a/lexikon/src/shared/api/supabase/server/login.ts b/lexikon/src/shared/api/supabase/server/login.ts new file mode 100644 index 0000000..9981498 --- /dev/null +++ b/lexikon/src/shared/api/supabase/server/login.ts @@ -0,0 +1,45 @@ +"use server"; + +import { revalidatePath } from "next/cache"; +import { redirect } from "next/navigation"; +import { supaServer } from "./db"; + +export async function login(formData: FormData) { + const supabase = await supaServer(); + + // type-casting here for convenience + // in practice, you should validate your inputs + const data = { + email: formData.get("email") as string, + password: formData.get("password") as string, + }; + + const { error } = await supabase.auth.signInWithPassword(data); + + if (error) { + redirect("/error"); + } + + revalidatePath("/", "layout"); + redirect("/"); +} + +export async function signup(formData: FormData) { + const supabase = await supaServer(); + + // type-casting here for convenience + // in practice, you should validate your inputs + const data = { + email: formData.get("email") as string, + password: formData.get("password") as string, + }; + + const { error } = await supabase.auth.signUp(data); + + if (error) { + redirect("/error"); + } + + revalidatePath("/", "layout"); + redirect("/"); + } diff --git a/lexikon/src/shared/api/supabase/server/middleware.ts b/lexikon/src/shared/api/supabase/server/middleware.ts new file mode 100644 index 0000000..0f0cd60 --- /dev/null +++ b/lexikon/src/shared/api/supabase/server/middleware.ts @@ -0,0 +1,74 @@ +import { createServerClient } from "@supabase/ssr"; +import { NextResponse, type NextRequest } from "next/server"; + +export async function updateSession(request: NextRequest) { + let supabaseResponse = NextResponse.next({ + request, + }); + + const supabase = createServerClient( + process.env.NEXT_PUBLIC_SUPABASE_URL!, + process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, + { + cookies: { + getAll() { + return request.cookies.getAll(); + }, + setAll(cookiesToSet) { + cookiesToSet.forEach(({ name, value, options }) => + request.cookies.set(name, value), + ); + supabaseResponse = NextResponse.next({ + request, + }); + cookiesToSet.forEach(({ name, value, options }) => + supabaseResponse.cookies.set(name, value, options), + ); + }, + }, + }, + ); + + // Do not run code between createServerClient and + // supabase.auth.getUser(). A simple mistake could make it very hard to debug + // issues with users being randomly logged out. + + // IMPORTANT: DO NOT REMOVE auth.getUser() + + const { + data: { user }, + } = await supabase.auth.getUser(); + + + // TODO: Fix this and add Login logic +// if ( +// !user && +// !request.nextUrl.pathname.startsWith("/login") && +// !request.nextUrl.pathname.startsWith("/confirm") && +// !request.nextUrl.pathname.startsWith("/error") && +// !request.nextUrl.pathname.startsWith("/auth") && +// !request.nextUrl.pathname.startsWith("/api") +// ) { +// // no user, potentially respond by redirecting the user to the login page +// const url = request.nextUrl.clone(); + +// url.pathname = "/login"; + +// return NextResponse.redirect(url); +// } + + // IMPORTANT: You *must* return the supabaseResponse object as it is. + // If you're creating a new response object with NextResponse.next() make sure to: + // 1. Pass the request in it, like so: + // const myNewResponse = NextResponse.next({ request }) + // 2. Copy over the cookies, like so: + // myNewResponse.cookies.setAll(supabaseResponse.cookies.getAll()) + // 3. Change the myNewResponse object to fit your needs, but avoid changing + // the cookies! + // 4. Finally: + // return myNewResponse + // If this is not done, you may be causing the browser and server to go out + // of sync and terminate the user's session prematurely! + + return supabaseResponse; +} diff --git a/lexikon/src/shared/config/api.ts b/lexikon/src/shared/config/api.ts new file mode 100644 index 0000000..b46001a --- /dev/null +++ b/lexikon/src/shared/config/api.ts @@ -0,0 +1,2 @@ +// export const LOCAL_API_BASE = 'http://localhost:8000/api'; +export const LOCAL_API_BASE = 'os-machina.local:8000/v1'; diff --git a/lexikon/src/shared/config/fonts.ts b/lexikon/src/shared/config/fonts.ts new file mode 100644 index 0000000..0e7d9c9 --- /dev/null +++ b/lexikon/src/shared/config/fonts.ts @@ -0,0 +1,11 @@ +import { Fira_Code as FontMono, Inter as FontSans } from "next/font/google"; + +export const fontSans = FontSans({ + subsets: ["latin"], + variable: "--font-sans", +}); + +export const fontMono = FontMono({ + subsets: ["latin"], + variable: "--font-mono", +}); diff --git a/lexikon/src/shared/config/mockData.ts b/lexikon/src/shared/config/mockData.ts new file mode 100644 index 0000000..bf7786e --- /dev/null +++ b/lexikon/src/shared/config/mockData.ts @@ -0,0 +1,4 @@ +export const example_summary = + "https://raw.githubusercontent.com/DotNaos/TGI13/refs/heads/main/Informatik/Man-in-the-middle.md"; + +export const example_hero_image = "https://moodle.fhgr.ch/pluginfile.php/1058426/course/overviewfiles/Titelbild.jpg"; diff --git a/lexikon/src/shared/config/paths.ts b/lexikon/src/shared/config/paths.ts new file mode 100644 index 0000000..aaf8e75 --- /dev/null +++ b/lexikon/src/shared/config/paths.ts @@ -0,0 +1,30 @@ +export type StoragePaths = typeof storagePaths; + +export const storagePaths = { + moduleContent: { + bucket: "module-content", + }, +}; + +/** + * Generate the storage path for a summary file. + * @param termCode The term code (e.g., 'FS25') + * @param courseId The course ID + * @param summaryName The summary name (should be sanitized) + */ +export const getSummaryPath = ( + termCode: string, + courseId: number, + summaryName: string, +): string => { + return `${termCode}/courses/${courseId}/summaries/summary_${summaryName}.mdx`; +}; + + +export const getNewSummaryPath = ( + currentPath: string, + newName: string, +): string => { + const dir = currentPath.substring(0, currentPath.lastIndexOf("/")); + return `${dir}/summary_${newName.trim().replaceAll(" ", "-")}.mdx`; +}; diff --git a/lexikon/src/shared/config/site.ts b/lexikon/src/shared/config/site.ts new file mode 100644 index 0000000..f4a59b8 --- /dev/null +++ b/lexikon/src/shared/config/site.ts @@ -0,0 +1,6 @@ +export type SiteConfig = typeof siteConfig; + +export const siteConfig = { + name: "Lexikon", + description: "A comprehensive resource for knowledge and learning.", +}; diff --git a/lexikon/src/shared/domain/course.ts b/lexikon/src/shared/domain/course.ts new file mode 100644 index 0000000..44295d1 --- /dev/null +++ b/lexikon/src/shared/domain/course.ts @@ -0,0 +1,13 @@ +import { Database } from "shared/types/db"; +import { StudyModule } from "./module"; + +/** + * Represents a course in the system using the generated database type + */ +export type Course = Database["library"]["Tables"]["courses"]["Row"] & { + is_user_enrolled: boolean; +}; + +export type CourseModule = Course & StudyModule & { + is_user_favorite: boolean; +} diff --git a/lexikon/src/shared/domain/librarian/index.d.ts b/lexikon/src/shared/domain/librarian/index.d.ts new file mode 100644 index 0000000..f7cbc84 --- /dev/null +++ b/lexikon/src/shared/domain/librarian/index.d.ts @@ -0,0 +1,13 @@ +export type { + TaskInfo, + DownloadRequestCourse, + SummaryResponse, + DownloadRequest, +} from './task'; +export type { + MoodleIndex, + CourseIndex, + TermIndex, + DegreeProgramIndex, + FileEntryIndex, +} from './moodleIndex'; diff --git a/lexikon/src/shared/domain/librarian/moodleIndex.ts b/lexikon/src/shared/domain/librarian/moodleIndex.ts new file mode 100644 index 0000000..7d098a9 --- /dev/null +++ b/lexikon/src/shared/domain/librarian/moodleIndex.ts @@ -0,0 +1,30 @@ +export interface FileEntryIndex { + id: string; + name: string; +} + +export interface CourseIndex { + id: string; + name: string; + activity_type?: string; + hero_image?: string; + content_ressource_id?: string; + files: FileEntryIndex[]; +} + +export interface TermIndex { + id: string; + name: string; + courses: CourseIndex[]; +} + +export interface DegreeProgramIndex { + id: string; + name: string; + semesters: TermIndex[]; +} + +export interface MoodleIndex { + degree_program: DegreeProgramIndex; + timestamp: string; +} diff --git a/lexikon/src/shared/domain/librarian/task.ts b/lexikon/src/shared/domain/librarian/task.ts new file mode 100644 index 0000000..7d5c590 --- /dev/null +++ b/lexikon/src/shared/domain/librarian/task.ts @@ -0,0 +1,17 @@ +import { MoodleIndex } from "./moodleIndex"; +import { TaskResult } from "./taskResult"; + +export interface TaskInfo { + task_id: string; + name?: string; + state: 'queued' | 'running' | 'success' | 'error'; + progress?: number; + detail?: string; + download_links?: string[]; + result?: TaskResult; +} + +export interface DownloadRequestCourse { + course_id: string; + term_id: string; +} diff --git a/lexikon/src/shared/domain/librarian/taskRequest.ts b/lexikon/src/shared/domain/librarian/taskRequest.ts new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/src/shared/domain/librarian/taskResult.ts b/lexikon/src/shared/domain/librarian/taskResult.ts new file mode 100644 index 0000000..d2eeffa --- /dev/null +++ b/lexikon/src/shared/domain/librarian/taskResult.ts @@ -0,0 +1,16 @@ +import { MoodleIndex } from "./moodleIndex"; +import { DownloadRequestCourse } from "./task"; + +export interface DownloadResult { + courses: DownloadRequestCourse[]; +} + +export interface SummaryResult { + summary: string; +} + +export interface CrawlResult { + moodleIndex: MoodleIndex; +} + +export type TaskResult = DownloadResult | SummaryResult | CrawlResult; diff --git a/lexikon/src/shared/domain/module.ts b/lexikon/src/shared/domain/module.ts new file mode 100644 index 0000000..de88746 --- /dev/null +++ b/lexikon/src/shared/domain/module.ts @@ -0,0 +1,6 @@ +import { Database } from "shared/types/db"; + +/** + * Represents a module in the system using the generated database type + */ +export type StudyModule = Database["library"]["Tables"]["modules"]["Row"]; diff --git a/lexikon/src/shared/domain/summary.ts b/lexikon/src/shared/domain/summary.ts new file mode 100644 index 0000000..b17ae5f --- /dev/null +++ b/lexikon/src/shared/domain/summary.ts @@ -0,0 +1,6 @@ +import { Database } from "shared/types/db"; + +/** + * Represents a summary view using the generated database view type + */ +export type CourseSummary = Database["library"]["Views"]["summary"]["Row"]; diff --git a/lexikon/src/shared/domain/term.ts b/lexikon/src/shared/domain/term.ts new file mode 100644 index 0000000..85fc2f3 --- /dev/null +++ b/lexikon/src/shared/domain/term.ts @@ -0,0 +1,7 @@ +import { Database } from 'shared/types/db'; + + +/** + * Represents a term in the system using the generated database type + */ +export type Term = Database["library"]["Tables"]["semester"]["Row"]; diff --git a/lexikon/src/shared/provider/ResponsiveProvider.tsx b/lexikon/src/shared/provider/ResponsiveProvider.tsx new file mode 100644 index 0000000..eb37677 --- /dev/null +++ b/lexikon/src/shared/provider/ResponsiveProvider.tsx @@ -0,0 +1,31 @@ +"use client"; + +import type { ReactNode } from "react"; +import { createContext, useState } from "react"; +import { useEffect } from "react"; + +export const ResponsiveContext = createContext(undefined); + +export default function ResponsiveProvider({ + children, +}: { + children: ReactNode; +}) { + const [isMobile, setIsMobile] = useState(undefined); + + useEffect(() => { + if (typeof window === "undefined") return; + const handleResize = () => setIsMobile(window.innerWidth < 640); + + handleResize(); + window.addEventListener("resize", handleResize); + + return () => window.removeEventListener("resize", handleResize); + }, [setIsMobile]); + + return ( + + {children} + + ); +} diff --git a/lexikon/src/shared/sequenceValidator.ts b/lexikon/src/shared/sequenceValidator.ts new file mode 100644 index 0000000..4e1a1b9 --- /dev/null +++ b/lexikon/src/shared/sequenceValidator.ts @@ -0,0 +1,70 @@ +// src/shared/sequenceValidator.ts +// Validates and builds a sequence of workers based on input/output types + +export interface WorkerMeta { + name: string; + input: string; + output: string; +} + +export interface SequenceValidationResult { + isValid: boolean; + sequence: WorkerMeta[]; + error?: string; +} + +/** + * Validates and builds a sequence of workers such that each worker's output matches the next worker's input. + * Returns the ordered sequence if valid, or an error message if not. + */ +export function validateWorkerSequence(workers: WorkerMeta[]): SequenceValidationResult { + if (!workers.length) { + return { isValid: false, sequence: [], error: 'No workers provided.' }; + } + + // Map input/output for quick lookup + const inputMap = new Map(); + const outputMap = new Map(); + for (const worker of workers) { + inputMap.set(worker.input, worker); + outputMap.set(worker.output, worker); + } + + // Find the starting worker (whose input is not any other worker's output) + const startWorker = workers.find( + w => !outputMap.has(w.input) + ); + if (!startWorker) { + return { isValid: false, sequence: [], error: 'No valid starting worker found.' }; + } + + // Build the sequence + const sequence: WorkerMeta[] = [startWorker]; + let current = startWorker; + const used = new Set([current.name]); + + while (sequence.length < workers.length) { + const next = workers.find( + w => w.input === current.output && !used.has(w.name) + ); + if (!next) { + break; + } + sequence.push(next); + used.add(next.name); + current = next; + } + + if (sequence.length !== workers.length) { + return { isValid: false, sequence, error: 'Workers cannot be sequenced linearly.' }; + } + + // Validate the chain + for (let i = 0; i < sequence.length - 1; i++) { + if (sequence[i].output !== sequence[i + 1].input) { + return { isValid: false, sequence, error: 'Invalid sequence: output/input mismatch.' }; + } + } + + return { isValid: true, sequence }; +} diff --git a/lexikon/src/shared/styles/hero.ts b/lexikon/src/shared/styles/hero.ts new file mode 100644 index 0000000..be90355 --- /dev/null +++ b/lexikon/src/shared/styles/hero.ts @@ -0,0 +1,4 @@ +// hero.ts +import { heroui } from "@heroui/react"; +import { defaultTheme, lexikonTheme } from "./heroui-themes"; +export default heroui(lexikonTheme); diff --git a/lexikon/src/shared/styles/heroui-themes.ts b/lexikon/src/shared/styles/heroui-themes.ts new file mode 100644 index 0000000..3e8c0d1 --- /dev/null +++ b/lexikon/src/shared/styles/heroui-themes.ts @@ -0,0 +1,274 @@ +export const defaultTheme = { + themes: { + light: { + colors: { + default: { + 50: "#fafafa", + 100: "#f2f2f3", + 200: "#ebebec", + 300: "#e3e3e6", + 400: "#dcdcdf", + 500: "#d4d4d8", + 600: "#afafb2", + 700: "#8a8a8c", + 800: "#656567", + 900: "#404041", + foreground: "#000", + DEFAULT: "#d4d4d8", + }, + primary: { + 50: "#dfedfd", + 100: "#b3d4fa", + 200: "#86bbf7", + 300: "#59a1f4", + 400: "#2d88f1", + 500: "#006fee", + 600: "#005cc4", + 700: "#00489b", + 800: "#003571", + 900: "#002147", + foreground: "#fff", + DEFAULT: "#006fee", + }, + secondary: { + 50: "#eee4f8", + 100: "#d7bfef", + 200: "#bf99e5", + 300: "#a773db", + 400: "#904ed2", + 500: "#7828c8", + 600: "#6321a5", + 700: "#4e1a82", + 800: "#39135f", + 900: "#240c3c", + foreground: "#fff", + DEFAULT: "#7828c8", + }, + success: { + 50: "#e2f8ec", + 100: "#b9efd1", + 200: "#91e5b5", + 300: "#68dc9a", + 400: "#40d27f", + 500: "#17c964", + 600: "#13a653", + 700: "#0f8341", + 800: "#0b5f30", + 900: "#073c1e", + foreground: "#000", + DEFAULT: "#17c964", + }, + warning: { + 50: "#fef4e4", + 100: "#fce4bd", + 200: "#fad497", + 300: "#f9c571", + 400: "#f7b54a", + 500: "#f5a524", + 600: "#ca881e", + 700: "#9f6b17", + 800: "#744e11", + 900: "#4a320b", + foreground: "#000", + DEFAULT: "#f5a524", + }, + danger: { + 50: "#fee1eb", + 100: "#fbb8cf", + 200: "#f98eb3", + 300: "#f76598", + 400: "#f53b7c", + 500: "#f31260", + 600: "#c80f4f", + 700: "#9e0c3e", + 800: "#73092e", + 900: "#49051d", + foreground: "#000", + DEFAULT: "#f31260", + }, + background: "#ffffff", + foreground: "#000000", + content1: { + DEFAULT: "#ffffff", + foreground: "#000", + }, + content2: { + DEFAULT: "#f4f4f5", + foreground: "#000", + }, + content3: { + DEFAULT: "#e4e4e7", + foreground: "#000", + }, + content4: { + DEFAULT: "#d4d4d8", + foreground: "#000", + }, + focus: "#006FEE", + overlay: "#000000", + }, + }, + dark: { + colors: { + default: { + 50: "#0d0d0e", + 100: "#19191c", + 200: "#26262a", + 300: "#323238", + 400: "#3f3f46", + 500: "#65656b", + 600: "#8c8c90", + 700: "#b2b2b5", + 800: "#d9d9da", + 900: "#ffffff", + foreground: "#fff", + DEFAULT: "#3f3f46", + }, + primary: { + 50: "#002147", + 100: "#003571", + 200: "#00489b", + 300: "#005cc4", + 400: "#006fee", + 500: "#2d88f1", + 600: "#59a1f4", + 700: "#86bbf7", + 800: "#b3d4fa", + 900: "#dfedfd", + foreground: "#fff", + DEFAULT: "#006fee", + }, + secondary: { + 50: "#240c3c", + 100: "#39135f", + 200: "#4e1a82", + 300: "#6321a5", + 400: "#7828c8", + 500: "#904ed2", + 600: "#a773db", + 700: "#bf99e5", + 800: "#d7bfef", + 900: "#eee4f8", + foreground: "#fff", + DEFAULT: "#7828c8", + }, + success: { + 50: "#073c1e", + 100: "#0b5f30", + 200: "#0f8341", + 300: "#13a653", + 400: "#17c964", + 500: "#40d27f", + 600: "#68dc9a", + 700: "#91e5b5", + 800: "#b9efd1", + 900: "#e2f8ec", + foreground: "#000", + DEFAULT: "#17c964", + }, + warning: { + 50: "#4a320b", + 100: "#744e11", + 200: "#9f6b17", + 300: "#ca881e", + 400: "#f5a524", + 500: "#f7b54a", + 600: "#f9c571", + 700: "#fad497", + 800: "#fce4bd", + 900: "#fef4e4", + foreground: "#000", + DEFAULT: "#f5a524", + }, + danger: { + 50: "#49051d", + 100: "#73092e", + 200: "#9e0c3e", + 300: "#c80f4f", + 400: "#f31260", + 500: "#f53b7c", + 600: "#f76598", + 700: "#f98eb3", + 800: "#fbb8cf", + 900: "#fee1eb", + foreground: "#000", + DEFAULT: "#f31260", + }, + background: "#000000", + foreground: "#ffffff", + content1: { + DEFAULT: "#18181b", + foreground: "#fff", + }, + content2: { + DEFAULT: "#27272a", + foreground: "#fff", + }, + content3: { + DEFAULT: "#3f3f46", + foreground: "#fff", + }, + content4: { + DEFAULT: "#52525b", + foreground: "#fff", + }, + focus: "#006FEE", + overlay: "#ffffff", + }, + }, + }, + layout: { + disabledOpacity: "0.5", + }, +}; + +export const lexikonTheme = { + themes: { + light: { + colors: { + default: { + 50: "#F9F9F9", + 100: "#ECECEC", + 200: "#E3E3E3", + 300: "#B4B4B4", + 400: "#9B9B9B", + 500: "#676767", + 600: "#424242", + 700: "#2F2F2F", + 800: "#212121", + 900: "#171717", + 950: "#0D0D0D", + + DEFAULT: "#D4D4D8", + }, + background: "#FFFFFF", + foreground: "#000000", + }, + }, + dark: { + colors: { + default: { + 50: "#0D0D0D", + 100: "#171717", + 200: "#212121", + 300: "#2F2F2F", + 400: "#424242", + 500: "#676767", + 600: "#9B9B9B", + 700: "#B4B4B4", + 800: "#E3E3E3", + 900: "#ECECEC", + 950: "#F9F9F9", + + DEFAULT: "#2F2F2F", + }, + background: "#000000", + foreground: "#FFFFFF", + }, + }, + }, + + layout: { + disabledOpacity: "0.5", + }, +}; diff --git a/lexikon/src/shared/styles/variants/container.ts b/lexikon/src/shared/styles/variants/container.ts new file mode 100644 index 0000000..4817359 --- /dev/null +++ b/lexikon/src/shared/styles/variants/container.ts @@ -0,0 +1,60 @@ +import { tv } from 'tailwind-variants'; + +export const container = tv({ + base: "flex items-center justify-center shrink-0 overflow-hidden", + variants: { + size: { + full: "w-full h-full grow", + min: "w-min h-min", + }, + maxW: { + none: "max-w-none", + xs: "max-w-xs", + sm: "max-w-sm", + md: "max-w-md", + lg: "max-w-lg", + xl: "max-w-xl", + full: "max-w-full", + }, + dir: { + row: "flex-row", + col: "flex-col", + }, + bg: { + none: "bg-transparent", + overlay: "bg-foreground/10", + }, + p: { + none: "p-0", + xs: "p-1", + sm: "p-2", + md: "p-4", + lg: "p-6", + xl: "p-8", + }, + gap: { + none: "gap-0", + xs: "gap-1", + sm: "gap-2", + md: "gap-4", + lg: "gap-6", + xl: "gap-8", + }, + rounded: { + none: "rounded-none", + sm: "rounded-md", + md: "rounded-lg", + lg: "rounded-xl", + xl: "rounded-2xl", + } + }, + defaultVariants: { + size: 'full', + maxW: 'none', + dir: 'row', + bg: 'none', + p: 'none', + gap: 'md', + rounded: 'none', + } +}) diff --git a/lexikon/src/shared/styles/variants/index.ts b/lexikon/src/shared/styles/variants/index.ts new file mode 100644 index 0000000..c5b5e8f --- /dev/null +++ b/lexikon/src/shared/styles/variants/index.ts @@ -0,0 +1 @@ +export * from "./container"; diff --git a/lexikon/src/shared/styles/variants/title.ts b/lexikon/src/shared/styles/variants/title.ts new file mode 100644 index 0000000..04b1f22 --- /dev/null +++ b/lexikon/src/shared/styles/variants/title.ts @@ -0,0 +1,53 @@ +import { tv } from "tailwind-variants"; + +export const title = tv({ + base: "tracking-tight inline font-semibold", + variants: { + color: { + violet: "from-[#FF1CF7] to-[#b249f8]", + yellow: "from-[#FF705B] to-[#FFB457]", + blue: "from-[#5EA2EF] to-[#0072F5]", + cyan: "from-[#00b7fa] to-[#01cfea]", + green: "from-[#6FEE8D] to-[#17c964]", + pink: "from-[#FF72E1] to-[#F54C7A]", + foreground: "dark:from-[#FFFFFF] dark:to-[#4B4B4B]", + }, + size: { + sm: "text-3xl lg:text-4xl", + md: "text-[2.3rem] lg:text-5xl leading-9", + lg: "text-4xl lg:text-6xl", + }, + fullWidth: { + true: "w-full block", + }, + }, + defaultVariants: { + size: "md", + }, + compoundVariants: [ + { + color: [ + "violet", + "yellow", + "blue", + "cyan", + "green", + "pink", + "foreground", + ], + class: "bg-clip-text text-transparent bg-linear-to-b", + }, + ], +}); + +export const subtitle = tv({ + base: "w-full md:w-1/2 my-2 text-lg lg:text-xl text-default-600 block max-w-full", + variants: { + fullWidth: { + true: "w-full!", + }, + }, + defaultVariants: { + fullWidth: true, + }, +}); diff --git a/lexikon/src/shared/tests/.gitkeep b/lexikon/src/shared/tests/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/src/shared/types/db/database.types.ts b/lexikon/src/shared/types/db/database.types.ts new file mode 100644 index 0000000..1e8e405 --- /dev/null +++ b/lexikon/src/shared/types/db/database.types.ts @@ -0,0 +1,1607 @@ +export type Json = + | string + | number + | boolean + | null + | { [key: string]: Json | undefined } + | Json[]; + +export type Database = { + library: { + Tables: { + academic_season: { + Row: { + created_at: string; + partitioning_id: number; + prefix: string; + season_id: number; + season_name: string; + }; + Insert: { + created_at?: string; + partitioning_id?: number; + prefix: string; + season_id: number; + season_name: string; + }; + Update: { + created_at?: string; + partitioning_id?: number; + prefix?: string; + season_id?: number; + season_name?: string; + }; + Relationships: []; + }; + academic_season_p0: { + Row: { + created_at: string; + partitioning_id: number; + prefix: string; + season_id: number; + season_name: string; + }; + Insert: { + created_at?: string; + partitioning_id?: number; + prefix: string; + season_id: number; + season_name: string; + }; + Update: { + created_at?: string; + partitioning_id?: number; + prefix?: string; + season_id?: number; + season_name?: string; + }; + Relationships: []; + }; + cohort: { + Row: { + cohort_code: string; + cohort_description: string | null; + cohort_id: number; + cohort_name: string; + cohort_uuid: string; + cohort_year: string; + created_at: string; + partitioning_id: number; + }; + Insert: { + cohort_code: string; + cohort_description?: string | null; + cohort_id?: number; + cohort_name: string; + cohort_uuid?: string; + cohort_year: string; + created_at?: string; + partitioning_id?: number; + }; + Update: { + cohort_code?: string; + cohort_description?: string | null; + cohort_id?: number; + cohort_name?: string; + cohort_uuid?: string; + cohort_year?: string; + created_at?: string; + partitioning_id?: number; + }; + Relationships: []; + }; + cohort_p0: { + Row: { + cohort_code: string; + cohort_description: string | null; + cohort_id: number; + cohort_name: string; + cohort_uuid: string; + cohort_year: string; + created_at: string; + partitioning_id: number; + }; + Insert: { + cohort_code: string; + cohort_description?: string | null; + cohort_id: number; + cohort_name: string; + cohort_uuid?: string; + cohort_year: string; + created_at?: string; + partitioning_id?: number; + }; + Update: { + cohort_code?: string; + cohort_description?: string | null; + cohort_id?: number; + cohort_name?: string; + cohort_uuid?: string; + cohort_year?: string; + created_at?: string; + partitioning_id?: number; + }; + Relationships: []; + }; + cohort_semesters: { + Row: { + cohort_id: number; + cohort_semester_id: number; + created_at: string; + partitioning_id: number; + semester_id: number; + }; + Insert: { + cohort_id?: number; + cohort_semester_id?: number; + created_at?: string; + partitioning_id?: number; + semester_id?: number; + }; + Update: { + cohort_id?: number; + cohort_semester_id?: number; + created_at?: string; + partitioning_id?: number; + semester_id?: number; + }; + Relationships: [ + { + foreignKeyName: "cohort_semesters_cohort_id_fkey"; + columns: ["cohort_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "cohort"; + referencedColumns: ["cohort_id", "partitioning_id"]; + }, + { + foreignKeyName: "cohort_semesters_semester_id_fkey"; + columns: ["semester_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "semester"; + referencedColumns: ["semester_id", "partitioning_id"]; + }, + ]; + }; + cohort_semesters_p0: { + Row: { + cohort_id: number; + cohort_semester_id: number; + created_at: string; + partitioning_id: number; + semester_id: number; + }; + Insert: { + cohort_id: number; + cohort_semester_id: number; + created_at?: string; + partitioning_id?: number; + semester_id: number; + }; + Update: { + cohort_id?: number; + cohort_semester_id?: number; + created_at?: string; + partitioning_id?: number; + semester_id?: number; + }; + Relationships: []; + }; + courses: { + Row: { + content_ressource_id: number | null; + content_ressource_valid: boolean; + course_id: number; + created_at: string; + hero_image: string | null; + module_id: number; + partitioning_id: number; + semester_id: number; + }; + Insert: { + content_ressource_id?: number | null; + content_ressource_valid?: boolean; + course_id: number; + created_at?: string; + hero_image?: string | null; + module_id?: number; + partitioning_id?: number; + semester_id?: number; + }; + Update: { + content_ressource_id?: number | null; + content_ressource_valid?: boolean; + course_id?: number; + created_at?: string; + hero_image?: string | null; + module_id?: number; + partitioning_id?: number; + semester_id?: number; + }; + Relationships: [ + { + foreignKeyName: "courses_module_id_fkey"; + columns: ["module_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "modules"; + referencedColumns: ["module_id", "partitioning_id"]; + }, + { + foreignKeyName: "courses_semester_id_fkey"; + columns: ["semester_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "semester"; + referencedColumns: ["semester_id", "partitioning_id"]; + }, + ]; + }; + courses_buckets: { + Row: { + bucket_id: string; + course_id: number; + courses_buckets_id: number; + created_at: string; + partitioning_id: number; + }; + Insert: { + bucket_id: string; + course_id?: number; + courses_buckets_id?: number; + created_at?: string; + partitioning_id?: number; + }; + Update: { + bucket_id?: string; + course_id?: number; + courses_buckets_id?: number; + created_at?: string; + partitioning_id?: number; + }; + Relationships: [ + { + foreignKeyName: "courses_buckets_bucket_id_fkey"; + columns: ["bucket_id"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["bucket_id"]; + }, + { + foreignKeyName: "courses_buckets_course_id_fkey"; + columns: ["course_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "courses"; + referencedColumns: ["course_id", "partitioning_id"]; + }, + ]; + }; + courses_buckets_p0: { + Row: { + bucket_id: string; + course_id: number; + courses_buckets_id: number; + created_at: string; + partitioning_id: number; + }; + Insert: { + bucket_id: string; + course_id: number; + courses_buckets_id: number; + created_at?: string; + partitioning_id?: number; + }; + Update: { + bucket_id?: string; + course_id?: number; + courses_buckets_id?: number; + created_at?: string; + partitioning_id?: number; + }; + Relationships: []; + }; + courses_files: { + Row: { + course_id: number; + courses_files_id: number; + created_at: string; + file_id: number; + partitioning_id: number; + }; + Insert: { + course_id: number; + courses_files_id?: number; + created_at?: string; + file_id: number; + partitioning_id: number; + }; + Update: { + course_id?: number; + courses_files_id?: number; + created_at?: string; + file_id?: number; + partitioning_id?: number; + }; + Relationships: [ + { + foreignKeyName: "courses_files_course_id_fkey"; + columns: ["course_id", "partitioning_id"]; + isOneToOne: true; + referencedRelation: "courses"; + referencedColumns: ["course_id", "partitioning_id"]; + }, + { + foreignKeyName: "courses_files_file_id_fkey"; + columns: ["file_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "filelinks"; + referencedColumns: ["file_id", "partitioning_id"]; + }, + ]; + }; + courses_files_p0: { + Row: { + course_id: number; + courses_files_id: number; + created_at: string; + file_id: number; + partitioning_id: number; + }; + Insert: { + course_id: number; + courses_files_id: number; + created_at?: string; + file_id: number; + partitioning_id: number; + }; + Update: { + course_id?: number; + courses_files_id?: number; + created_at?: string; + file_id?: number; + partitioning_id?: number; + }; + Relationships: []; + }; + courses_p0: { + Row: { + content_ressource_id: number | null; + content_ressource_valid: boolean; + course_id: number; + created_at: string; + hero_image: string | null; + module_id: number; + partitioning_id: number; + semester_id: number; + }; + Insert: { + content_ressource_id?: number | null; + content_ressource_valid?: boolean; + course_id: number; + created_at?: string; + hero_image?: string | null; + module_id: number; + partitioning_id?: number; + semester_id: number; + }; + Update: { + content_ressource_id?: number | null; + content_ressource_valid?: boolean; + course_id?: number; + created_at?: string; + hero_image?: string | null; + module_id?: number; + partitioning_id?: number; + semester_id?: number; + }; + Relationships: []; + }; + courses_users: { + Row: { + course_id: number; + courses_users_id: number; + created_at: string; + partitioning_id: number; + user_uuid: string; + }; + Insert: { + course_id: number; + courses_users_id?: number; + created_at?: string; + partitioning_id?: number; + user_uuid: string; + }; + Update: { + course_id?: number; + courses_users_id?: number; + created_at?: string; + partitioning_id?: number; + user_uuid?: string; + }; + Relationships: [ + { + foreignKeyName: "courses_users_course_id_fkey"; + columns: ["course_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "courses"; + referencedColumns: ["course_id", "partitioning_id"]; + }, + { + foreignKeyName: "courses_users_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "links_from_users"; + referencedColumns: ["user_uuid"]; + }, + { + foreignKeyName: "courses_users_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["user_uuid"]; + }, + ]; + }; + courses_users_p0: { + Row: { + course_id: number; + courses_users_id: number; + created_at: string; + partitioning_id: number; + user_uuid: string; + }; + Insert: { + course_id: number; + courses_users_id: number; + created_at?: string; + partitioning_id?: number; + user_uuid: string; + }; + Update: { + course_id?: number; + courses_users_id?: number; + created_at?: string; + partitioning_id?: number; + user_uuid?: string; + }; + Relationships: []; + }; + degree_programs: { + Row: { + created_at: string; + partitioning_id: number; + program_code: string | null; + program_description: string | null; + program_id: number; + program_name: string; + program_uuid: string; + }; + Insert: { + created_at?: string; + partitioning_id?: number; + program_code?: string | null; + program_description?: string | null; + program_id?: number; + program_name: string; + program_uuid?: string; + }; + Update: { + created_at?: string; + partitioning_id?: number; + program_code?: string | null; + program_description?: string | null; + program_id?: number; + program_name?: string; + program_uuid?: string; + }; + Relationships: []; + }; + degree_programs_p0: { + Row: { + created_at: string; + partitioning_id: number; + program_code: string | null; + program_description: string | null; + program_id: number; + program_name: string; + program_uuid: string; + }; + Insert: { + created_at?: string; + partitioning_id?: number; + program_code?: string | null; + program_description?: string | null; + program_id: number; + program_name: string; + program_uuid?: string; + }; + Update: { + created_at?: string; + partitioning_id?: number; + program_code?: string | null; + program_description?: string | null; + program_id?: number; + program_name?: string; + program_uuid?: string; + }; + Relationships: []; + }; + file_labels: { + Row: { + created_at: string; + file_id: number; + file_labels: Json; + file_labels_id: number; + partitioning_id: number; + }; + Insert: { + created_at?: string; + file_id: number; + file_labels: Json; + file_labels_id: number; + partitioning_id?: number; + }; + Update: { + created_at?: string; + file_id?: number; + file_labels?: Json; + file_labels_id?: number; + partitioning_id?: number; + }; + Relationships: [ + { + foreignKeyName: "file_labels_file_id_fkey"; + columns: ["file_id", "partitioning_id"]; + isOneToOne: true; + referencedRelation: "filelinks"; + referencedColumns: ["file_id", "partitioning_id"]; + }, + ]; + }; + file_labels_p0: { + Row: { + created_at: string; + file_id: number; + file_labels: Json; + file_labels_id: number; + partitioning_id: number; + }; + Insert: { + created_at?: string; + file_id: number; + file_labels: Json; + file_labels_id: number; + partitioning_id?: number; + }; + Update: { + created_at?: string; + file_id?: number; + file_labels?: Json; + file_labels_id?: number; + partitioning_id?: number; + }; + Relationships: []; + }; + filelinks: { + Row: { + created_at: string; + file_id: number; + filename: string; + last_modification: string; + location_id: number; + partitioning_id: number; + }; + Insert: { + created_at?: string; + file_id?: number; + filename: string; + last_modification: string; + location_id: number; + partitioning_id?: number; + }; + Update: { + created_at?: string; + file_id?: number; + filename?: string; + last_modification?: string; + location_id?: number; + partitioning_id?: number; + }; + Relationships: [ + { + foreignKeyName: "filelinks_location_id_fkey"; + columns: ["location_id"]; + isOneToOne: false; + referencedRelation: "links_from_users"; + referencedColumns: ["location_type"]; + }, + { + foreignKeyName: "filelinks_location_id_fkey"; + columns: ["location_id"]; + isOneToOne: false; + referencedRelation: "location_types"; + referencedColumns: ["location_id"]; + }, + ]; + }; + filelinks_p0: { + Row: { + created_at: string; + file_id: number; + filename: string; + last_modification: string; + location_id: number; + partitioning_id: number; + }; + Insert: { + created_at?: string; + file_id: number; + filename: string; + last_modification: string; + location_id: number; + partitioning_id?: number; + }; + Update: { + created_at?: string; + file_id?: number; + filename?: string; + last_modification?: string; + location_id?: number; + partitioning_id?: number; + }; + Relationships: []; + }; + location_types: { + Row: { + created_at: string; + location: string; + location_id: number; + }; + Insert: { + created_at?: string; + location: string; + location_id: number; + }; + Update: { + created_at?: string; + location?: string; + location_id?: number; + }; + Relationships: []; + }; + module_favorites: { + Row: { + created_at: string; + module_favorites_id: number; + module_id: number; + partitioning_id: number; + updated_at: string; + user_uuid: string; + }; + Insert: { + created_at?: string; + module_favorites_id?: number; + module_id: number; + partitioning_id: number; + updated_at?: string; + user_uuid: string; + }; + Update: { + created_at?: string; + module_favorites_id?: number; + module_id?: number; + partitioning_id?: number; + updated_at?: string; + user_uuid?: string; + }; + Relationships: [ + { + foreignKeyName: "module_favorites_module_id_partitioning_id_fkey"; + columns: ["module_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "modules"; + referencedColumns: ["module_id", "partitioning_id"]; + }, + { + foreignKeyName: "module_favorites_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "links_from_users"; + referencedColumns: ["user_uuid"]; + }, + { + foreignKeyName: "module_favorites_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["user_uuid"]; + }, + ]; + }; + module_favorites_p0: { + Row: { + created_at: string; + module_favorites_id: number; + module_id: number; + partitioning_id: number; + updated_at: string; + user_uuid: string; + }; + Insert: { + created_at?: string; + module_favorites_id: number; + module_id: number; + partitioning_id: number; + updated_at?: string; + user_uuid: string; + }; + Update: { + created_at?: string; + module_favorites_id?: number; + module_id?: number; + partitioning_id?: number; + updated_at?: string; + user_uuid?: string; + }; + Relationships: []; + }; + module_name_escaping: { + Row: { + correct_name: string; + created_at: string; + incorrect_name: string; + module_name_escaping_id: number; + updated_at: string; + }; + Insert: { + correct_name: string; + created_at?: string; + incorrect_name: string; + module_name_escaping_id?: number; + updated_at?: string; + }; + Update: { + correct_name?: string; + created_at?: string; + incorrect_name?: string; + module_name_escaping_id?: number; + updated_at?: string; + }; + Relationships: []; + }; + modules: { + Row: { + created_at: string; + is_placeholder_module: boolean; + module_code: string; + module_description: string | null; + module_id: number; + module_name: string; + module_uuid: string; + partitioning_id: number; + }; + Insert: { + created_at?: string; + is_placeholder_module?: boolean; + module_code: string; + module_description?: string | null; + module_id?: number; + module_name: string; + module_uuid?: string; + partitioning_id?: number; + }; + Update: { + created_at?: string; + is_placeholder_module?: boolean; + module_code?: string; + module_description?: string | null; + module_id?: number; + module_name?: string; + module_uuid?: string; + partitioning_id?: number; + }; + Relationships: []; + }; + modules_p0: { + Row: { + created_at: string; + is_placeholder_module: boolean; + module_code: string; + module_description: string | null; + module_id: number; + module_name: string; + module_uuid: string; + partitioning_id: number; + }; + Insert: { + created_at?: string; + is_placeholder_module?: boolean; + module_code: string; + module_description?: string | null; + module_id: number; + module_name: string; + module_uuid?: string; + partitioning_id?: number; + }; + Update: { + created_at?: string; + is_placeholder_module?: boolean; + module_code?: string; + module_description?: string | null; + module_id?: number; + module_name?: string; + module_uuid?: string; + partitioning_id?: number; + }; + Relationships: []; + }; + object_labels: { + Row: { + created_at: string; + object_id: string | null; + object_label_id: number; + object_labels: Json; + partitioning_id: number; + }; + Insert: { + created_at?: string; + object_id?: string | null; + object_label_id?: number; + object_labels: Json; + partitioning_id?: number; + }; + Update: { + created_at?: string; + object_id?: string | null; + object_label_id?: number; + object_labels?: Json; + partitioning_id?: number; + }; + Relationships: [ + { + foreignKeyName: "object_labels_object_id_fkey"; + columns: ["object_id"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["object_id"]; + }, + ]; + }; + object_labels_p0: { + Row: { + created_at: string; + object_id: string | null; + object_label_id: number; + object_labels: Json; + partitioning_id: number; + }; + Insert: { + created_at?: string; + object_id?: string | null; + object_label_id: number; + object_labels: Json; + partitioning_id?: number; + }; + Update: { + created_at?: string; + object_id?: string | null; + object_label_id?: number; + object_labels?: Json; + partitioning_id?: number; + }; + Relationships: []; + }; + partitioning_master: { + Row: { + created_at: string; + partitioning_description: string | null; + partitioning_id: number; + partitioning_name: string; + valid_from: string | null; + }; + Insert: { + created_at?: string; + partitioning_description?: string | null; + partitioning_id: number; + partitioning_name: string; + valid_from?: string | null; + }; + Update: { + created_at?: string; + partitioning_description?: string | null; + partitioning_id?: number; + partitioning_name?: string; + valid_from?: string | null; + }; + Relationships: []; + }; + programs_modules: { + Row: { + created_at: string; + module_id: number; + partitioning_id: number; + program_id: number; + programs_modules_id: number; + }; + Insert: { + created_at?: string; + module_id?: number; + partitioning_id?: number; + program_id?: number; + programs_modules_id?: number; + }; + Update: { + created_at?: string; + module_id?: number; + partitioning_id?: number; + program_id?: number; + programs_modules_id?: number; + }; + Relationships: [ + { + foreignKeyName: "programs_modules_module_id_fkey"; + columns: ["module_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "modules"; + referencedColumns: ["module_id", "partitioning_id"]; + }, + { + foreignKeyName: "programs_modules_program_id_fkey"; + columns: ["program_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "degree_programs"; + referencedColumns: ["program_id", "partitioning_id"]; + }, + ]; + }; + programs_modules_p0: { + Row: { + created_at: string; + module_id: number; + partitioning_id: number; + program_id: number; + programs_modules_id: number; + }; + Insert: { + created_at?: string; + module_id: number; + partitioning_id?: number; + program_id: number; + programs_modules_id: number; + }; + Update: { + created_at?: string; + module_id?: number; + partitioning_id?: number; + program_id?: number; + programs_modules_id?: number; + }; + Relationships: []; + }; + semester: { + Row: { + created_at: string; + end_date: string | null; + partitioning_id: number; + season_id: number; + semester_code: string; + semester_id: number; + semester_uuid: string; + start_date: string | null; + }; + Insert: { + created_at?: string; + end_date?: string | null; + partitioning_id?: number; + season_id: number; + semester_code: string; + semester_id?: number; + semester_uuid?: string; + start_date?: string | null; + }; + Update: { + created_at?: string; + end_date?: string | null; + partitioning_id?: number; + season_id?: number; + semester_code?: string; + semester_id?: number; + semester_uuid?: string; + start_date?: string | null; + }; + Relationships: [ + { + foreignKeyName: "semester_season_id_fkey"; + columns: ["season_id", "partitioning_id"]; + isOneToOne: false; + referencedRelation: "academic_season"; + referencedColumns: ["season_id", "partitioning_id"]; + }, + ]; + }; + semester_p0: { + Row: { + created_at: string; + end_date: string | null; + partitioning_id: number; + season_id: number; + semester_code: string; + semester_id: number; + semester_uuid: string; + start_date: string | null; + }; + Insert: { + created_at?: string; + end_date?: string | null; + partitioning_id?: number; + season_id: number; + semester_code: string; + semester_id: number; + semester_uuid?: string; + start_date?: string | null; + }; + Update: { + created_at?: string; + end_date?: string | null; + partitioning_id?: number; + season_id?: number; + semester_code?: string; + semester_id?: number; + semester_uuid?: string; + start_date?: string | null; + }; + Relationships: []; + }; + summaries: { + Row: { + chapter: string; + course_id: number; + created_at: string; + object_id: string; + partitioning_id: number; + summary_id: number; + summary_index: number; + updated_at: string; + }; + Insert: { + chapter: string; + course_id: number; + created_at?: string; + object_id: string; + partitioning_id?: number; + summary_id?: number; + summary_index?: number; + updated_at?: string; + }; + Update: { + chapter?: string; + course_id?: number; + created_at?: string; + object_id?: string; + partitioning_id?: number; + summary_id?: number; + summary_index?: number; + updated_at?: string; + }; + Relationships: [ + { + foreignKeyName: "summaries_object_id_fkey"; + columns: ["object_id"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["object_id"]; + }, + ]; + }; + summaries_p0: { + Row: { + chapter: string; + course_id: number; + created_at: string; + object_id: string; + partitioning_id: number; + summary_id: number; + summary_index: number; + updated_at: string; + }; + Insert: { + chapter: string; + course_id: number; + created_at?: string; + object_id: string; + partitioning_id?: number; + summary_id: number; + summary_index?: number; + updated_at?: string; + }; + Update: { + chapter?: string; + course_id?: number; + created_at?: string; + object_id?: string; + partitioning_id?: number; + summary_id?: number; + summary_index?: number; + updated_at?: string; + }; + Relationships: []; + }; + user_settings: { + Row: { + created_at: string; + location_id: number; + user_id: string; + user_settings: Json | null; + }; + Insert: { + created_at?: string; + location_id?: number; + user_id: string; + user_settings?: Json | null; + }; + Update: { + created_at?: string; + location_id?: number; + user_id?: string; + user_settings?: Json | null; + }; + Relationships: [ + { + foreignKeyName: "user_settings_location_id_fkey"; + columns: ["location_id"]; + isOneToOne: false; + referencedRelation: "links_from_users"; + referencedColumns: ["location_type"]; + }, + { + foreignKeyName: "user_settings_location_id_fkey"; + columns: ["location_id"]; + isOneToOne: false; + referencedRelation: "location_types"; + referencedColumns: ["location_id"]; + }, + { + foreignKeyName: "user_settings_user_id_fkey"; + columns: ["user_id"]; + isOneToOne: true; + referencedRelation: "links_from_users"; + referencedColumns: ["user_uuid"]; + }, + { + foreignKeyName: "user_settings_user_id_fkey"; + columns: ["user_id"]; + isOneToOne: true; + referencedRelation: "objects_from_users"; + referencedColumns: ["user_uuid"]; + }, + ]; + }; + }; + Views: { + courses_modules: { + Row: { + content_ressource_id: number | null; + course_id: number | null; + hero_image: string | null; + is_user_favorite: boolean | null; + module_code: string | null; + module_description: string | null; + module_id: number | null; + module_name: string | null; + user_uuid: string | null; + }; + Relationships: [ + { + foreignKeyName: "module_favorites_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "links_from_users"; + referencedColumns: ["user_uuid"]; + }, + { + foreignKeyName: "module_favorites_user_uuid_fkey"; + columns: ["user_uuid"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["user_uuid"]; + }, + ]; + }; + links_from_users: { + Row: { + course_id: number | null; + degree_program_id: number | null; + file_id: number | null; + filename: string | null; + location_type: number | null; + semester_code: string | null; + semester_id: number | null; + user_uuid: string | null; + }; + Relationships: []; + }; + modules_from_degree_programs: { + Row: { + module_code: string | null; + module_id: number | null; + module_name: string | null; + program_id: number | null; + }; + Relationships: []; + }; + objects_from_users: { + Row: { + bucket_id: string | null; + module_id: number | null; + object_id: string | null; + object_path: string | null; + semester_code: string | null; + semester_id: number | null; + user_uuid: string | null; + }; + Relationships: []; + }; + summary: { + Row: { + bucket_id: string | null; + chapter: string | null; + course_id: number | null; + object_id: string | null; + object_path: string | null; + summary_id: number | null; + summary_index: number | null; + }; + Relationships: [ + { + foreignKeyName: "objects_bucketId_fkey"; + columns: ["bucket_id"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["bucket_id"]; + }, + { + foreignKeyName: "summaries_object_id_fkey"; + columns: ["object_id"]; + isOneToOne: false; + referencedRelation: "objects_from_users"; + referencedColumns: ["object_id"]; + }, + ]; + }; + }; + Functions: { + create_module_summary: { + Args: { + p_module_id: number; + p_semester_id: number; + p_bucket_id: string; + p_object_path: string; + }; + Returns: boolean; + }; + delete_summary: { + Args: { + p_summary_id: number; + }; + Returns: Json; + }; + get_courses_modules: { + Args: { + p_module_id: number; + }; + Returns: { + module_code: string; + module_name: string; + module_description: string; + content_ressource_id: string; + hero_image: string; + }[]; + }; + get_module_id: { + Args: { + course_string: string; + }; + Returns: number; + }; + get_modules: { + Args: { + p_program_id?: number; + }; + Returns: { + module_id: number; + module_code: string; + module_name: string; + }[]; + }; + get_modules_with_semesters: { + Args: Record; + Returns: { + module_id: number; + module_code: string; + module_name: string; + module_description: string; + is_user_favorite: boolean; + }[]; + }; + get_moodle_index_by_user: { + Args: { + p_program_id: number; + p_user_uuid: string; + }; + Returns: string; + }; + get_object_id: { + Args: { + p_bucket: string; + p_destination_filepath: string; + }; + Returns: string; + }; + get_semesters_per_module: { + Args: { + p_module_id: number; + }; + Returns: { + semester_id: number; + semester_code: string; + }[]; + }; + get_summaries: { + Args: { + p_course_id: number; + }; + Returns: { + summary_id: number; + summary_index: number; + chapter: string; + object_path: string; + bucket_id: string; + }[]; + }; + get_summaries_by_module_semester: { + Args: { + p_module_id: number; + p_semester_id: number; + }; + Returns: { + summary_id: number; + summary_index: number; + chapter: string; + object_path: string; + bucket_id: string; + }[]; + }; + get_summary_object: { + Args: { + p_semester_id?: number; + p_module_id?: number; + }; + Returns: { + bucket_id: string; + object_path: string; + }[]; + }; + get_zombie_summary_objects: { + Args: { + p_summary_directores: string; + p_summary_filename_prefix: string; + p_summary_bucket_id: string; + }; + Returns: { + object_id: string; + object_path: string; + bucket_id: string; + }[]; + }; + refresh_courses_modules: { + Args: Record; + Returns: undefined; + }; + refresh_links_from_users: { + Args: Record; + Returns: undefined; + }; + refresh_modules_from_degree_programs: { + Args: Record; + Returns: undefined; + }; + refresh_objects_from_users: { + Args: Record; + Returns: undefined; + }; + refresh_summary: { + Args: Record; + Returns: undefined; + }; + rename_chapter: { + Args: { + p_new_chapter: string; + p_summary_id: number; + }; + Returns: string; + }; + upsert_course: { + Args: { + p_course_id: number; + p_course_name: string; + p_semester_id: number; + p_semester_name: string; + p_program_id: number; + p_hero_image?: string; + p_content_ressource_id?: number; + p_user_uuid?: string; + }; + Returns: string; + }; + upsert_courses_user: { + Args: { + p_course_id: number; + p_user_uuid: string; + }; + Returns: string; + }; + upsert_degree_program: { + Args: { + p_program_id: number; + p_program_name: string; + }; + Returns: undefined; + }; + upsert_file_and_course_file: { + Args: { + p_file_id: number; + p_filename: string; + p_last_modification: string; + p_uuid: string; + p_course_id: number; + }; + Returns: string; + }; + upsert_module: { + Args: { + p_module_uuid: string; + p_module_code: string; + p_module_name: string; + p_module_description?: string; + }; + Returns: undefined; + }; + upsert_module_favorites: { + Args: { + p_module_id: number; + p_favorite_state: boolean; + }; + Returns: string; + }; + upsert_programs_modules: { + Args: { + p_program_id: number; + p_module_id: number; + }; + Returns: string; + }; + upsert_semester: { + Args: { + p_semester_id: number; + p_semester_name: string; + }; + Returns: undefined; + }; + upsert_summary_chapter: { + Args: { + p_filename: string; + p_chapter: string; + p_object_uuid: string; + p_course_id: number; + }; + Returns: { + summary_id: number; + summary_index: number; + chapter: string; + object_path: string; + bucket_id: string; + }[]; + }; + }; + Enums: { + [_ in never]: never; + }; + CompositeTypes: { + [_ in never]: never; + }; + }; +}; + +type PublicSchema = Database[Extract]; + +export type Tables< + PublicTableNameOrOptions extends + | keyof (PublicSchema["Tables"] & PublicSchema["Views"]) + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof (Database[PublicTableNameOrOptions["schema"]]["Tables"] & + Database[PublicTableNameOrOptions["schema"]]["Views"]) + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? (Database[PublicTableNameOrOptions["schema"]]["Tables"] & + Database[PublicTableNameOrOptions["schema"]]["Views"])[TableName] extends { + Row: infer R; + } + ? R + : never + : PublicTableNameOrOptions extends keyof (PublicSchema["Tables"] & + PublicSchema["Views"]) + ? (PublicSchema["Tables"] & + PublicSchema["Views"])[PublicTableNameOrOptions] extends { + Row: infer R; + } + ? R + : never + : never; + +export type TablesInsert< + PublicTableNameOrOptions extends + | keyof PublicSchema["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Insert: infer I; + } + ? I + : never + : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] + ? PublicSchema["Tables"][PublicTableNameOrOptions] extends { + Insert: infer I; + } + ? I + : never + : never; + +export type TablesUpdate< + PublicTableNameOrOptions extends + | keyof PublicSchema["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Update: infer U; + } + ? U + : never + : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] + ? PublicSchema["Tables"][PublicTableNameOrOptions] extends { + Update: infer U; + } + ? U + : never + : never; + +export type Enums< + PublicEnumNameOrOptions extends + | keyof PublicSchema["Enums"] + | { schema: keyof Database }, + EnumName extends PublicEnumNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicEnumNameOrOptions["schema"]]["Enums"] + : never = never, +> = PublicEnumNameOrOptions extends { schema: keyof Database } + ? Database[PublicEnumNameOrOptions["schema"]]["Enums"][EnumName] + : PublicEnumNameOrOptions extends keyof PublicSchema["Enums"] + ? PublicSchema["Enums"][PublicEnumNameOrOptions] + : never; + +export type CompositeTypes< + PublicCompositeTypeNameOrOptions extends + | keyof PublicSchema["CompositeTypes"] + | { schema: keyof Database }, + CompositeTypeName extends PublicCompositeTypeNameOrOptions extends { + schema: keyof Database; + } + ? keyof Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"] + : never = never, +> = PublicCompositeTypeNameOrOptions extends { schema: keyof Database } + ? Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] + : PublicCompositeTypeNameOrOptions extends keyof PublicSchema["CompositeTypes"] + ? PublicSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] + : never; diff --git a/lexikon/src/shared/types/db/index.d.ts b/lexikon/src/shared/types/db/index.d.ts new file mode 100644 index 0000000..73d5b90 --- /dev/null +++ b/lexikon/src/shared/types/db/index.d.ts @@ -0,0 +1 @@ +export { Database } from "./database.types"; diff --git a/lexikon/src/shared/types/icons/index.ts b/lexikon/src/shared/types/icons/index.ts new file mode 100644 index 0000000..cece4a4 --- /dev/null +++ b/lexikon/src/shared/types/icons/index.ts @@ -0,0 +1,5 @@ +import { SVGProps } from "react"; + +export type IconSvgProps = SVGProps & { + size?: number; +}; diff --git a/lexikon/src/shared/ui/SearchField.tsx b/lexikon/src/shared/ui/SearchField.tsx new file mode 100644 index 0000000..af5d925 --- /dev/null +++ b/lexikon/src/shared/ui/SearchField.tsx @@ -0,0 +1,36 @@ +import { Input } from "@heroui/react"; +import { SearchIcon } from "lucide-react"; + +const SearchField = ({ + placeholder, + value, + onChange, + onClear, +}: { + placeholder?: string; + value: string; + onChange: (value: string) => void; + onClear?: () => void; +}) => { + return ( + onChange(e.target.value)} + onClear={onClear} + size="md" + startContent={} + type="search" + /> + ); +}; + +export default SearchField; diff --git a/lexikon/src/shared/ui/auth/LoginModal.tsx b/lexikon/src/shared/ui/auth/LoginModal.tsx new file mode 100644 index 0000000..cb8a477 --- /dev/null +++ b/lexikon/src/shared/ui/auth/LoginModal.tsx @@ -0,0 +1,62 @@ +import { + Button, + Modal, + ModalBody, + ModalContent, + ModalHeader, +} from "@heroui/react"; +import { useState } from "react"; +import { signInWithGoogle } from "shared/api/supabase"; + +interface LoginModalProps { + isOpen: boolean; + onClose: () => void; +} + +export default function LoginModal({ isOpen, onClose }: LoginModalProps) { + const [isLoading, setIsLoading] = useState(false); + + const handleGoogleLogin = async () => { + try { + setIsLoading(true); + await signInWithGoogle("http://localhost:3000/auth/callback"); + // Don't close modal immediately - OAuth will redirect the page + } catch (error) { + setIsLoading(false); + onClose(); + } + }; + + const GoogleIcon = () => ( + Google Logo + ); + + return ( + + + + Sign in to Lexikon + + + + + + + ); +} diff --git a/lexikon/src/shared/ui/code/CodeMirror.tsx b/lexikon/src/shared/ui/code/CodeMirror.tsx new file mode 100644 index 0000000..406e0e6 --- /dev/null +++ b/lexikon/src/shared/ui/code/CodeMirror.tsx @@ -0,0 +1,155 @@ +// CodeMirrorComponent.tsx +import React, { FC } from "react"; +import CodeMirror from "@uiw/react-codemirror"; +import { javascript } from "@codemirror/lang-javascript"; +import { markdown } from "@codemirror/lang-markdown"; +import { autocompletion } from "@codemirror/autocomplete"; +import { EditorView } from "@codemirror/view"; +import { oneDark } from "@codemirror/theme-one-dark"; + +interface CodeMirrorComponentProps { + /** Current code as a string */ + value: string; + /** Callback fired on code change */ + onChange: (value: string) => void; + /** Programming language for syntax highlighting (default: 'markdown') */ + language?: string; + /** CodeMirror theme (default: 'dark') */ + theme?: string; +} + +/** + * A responsive CodeMirror component. + * This editor fills its parent container – for example, if the parent container + * is set to 100vw and 100vh, the editor will occupy the remaining space. + */ +const CodeMirrorComponent: FC = ({ + value, + onChange, + language = "markdown", + theme = "dark", +}) => { + // Set up language extension based on the language prop + const getLanguageExtension = () => { + switch (language) { + case "javascript": + case "js": + case "jsx": + return javascript(); + case "markdown": + case "md": + return markdown(); + default: + return markdown(); // Fallback to markdown for unsupported languages + } + }; + + // Create an extension that only overrides the background color. + const customBackground = EditorView.theme( + { + "&": { + backgroundColor: "transparent", + }, + ".cm-gutter": { + backgroundColor: "transparent", + }, + ".cm-gutters": { + backgroundColor: "transparent", + }, + ".cm-gutterElement.cm-activeLineGutter": { + backgroundColor: "transparent", + }, + ".cm-editor": { + borderColor: "transparent", + outline: "none !important", + boxShadow: "none !important", + }, + ".cm-editor *": { + // Target all children elements of the editor + outline: "none !important", + }, + ".cm-editor.cm-focused": { + outline: "none !important", + border: "none !important", + boxShadow: "none !important", + }, + ".cm-focused": { + outline: "none !important", + border: "none !important", + boxShadow: "none !important", + }, + ".cm-scroller": { + outline: "none !important", + }, + ".cm-content": { + outline: "none !important", + }, + ".cm-activeLine": { + backgroundColor: "rgba(0, 0, 0, 0.05) !important", + }, + "*:focus, *:focus-visible": { + outline: "none !important", + border: "none !important", + boxShadow: "none !important", + }, + }, + { dark: true } + ); + + // Compose the two extensions together. + const editorExtensions = [ + customBackground, + oneDark, + // ...other extensions as needed + ]; + + React.useEffect(() => { + // Add a global style to remove outlines + const style = document.createElement("style"); + + style.innerHTML = ` + .cm-editor, .cm-editor *, .cm-scroller, .cm-content { + outline: none !important; + box-shadow: none !important; + } + `; + document.head.appendChild(style); + + return () => { + document.head.removeChild(style); + }; + }, []); + + return ( +
+ +
+ ); +}; + +export default CodeMirrorComponent; diff --git a/lexikon/src/shared/ui/code/Editor.tsx b/lexikon/src/shared/ui/code/Editor.tsx new file mode 100644 index 0000000..51bc85f --- /dev/null +++ b/lexikon/src/shared/ui/code/Editor.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { FC } from "react"; +import { AnimatePresence, motion } from "framer-motion"; +import CodeMirrorComponent from "./CodeMirror"; + +interface EditorProps { + value: string; + onChange: (value: string) => void; + language?: string; + theme?: string; +} + +/** + * Editor wrapper with animation. Wraps the code editor (e.g., CodeMirror). + */ +const Editor: FC = ({ + value, + onChange, + language = "markdown", + theme = "dark", +}) => { + return ( + + + + + + ); +}; + +export default Editor; diff --git a/lexikon/src/shared/ui/code/Monaco.tsx b/lexikon/src/shared/ui/code/Monaco.tsx new file mode 100644 index 0000000..e69de29 diff --git a/lexikon/src/shared/ui/icons.tsx b/lexikon/src/shared/ui/icons.tsx new file mode 100644 index 0000000..6de5430 --- /dev/null +++ b/lexikon/src/shared/ui/icons.tsx @@ -0,0 +1,183 @@ +import * as React from "react"; + +import { IconSvgProps } from "shared/types/icons"; + +export const Logo: React.FC = ({ + size = 36, + width, + height, + ...props +}) => ( + + + +); + +export const DiscordIcon: React.FC = ({ + size = 24, + width, + height, + ...props +}) => { + return ( + + + + ); +}; + +export const TwitterIcon: React.FC = ({ + size = 24, + width, + height, + ...props +}) => { + return ( + + + + ); +}; + +export const GithubIcon: React.FC = ({ + size = 24, + width, + height, + ...props +}) => { + return ( + + + + ); +}; + +export const MoonFilledIcon = ({ + size = 24, + width, + height, + ...props +}: IconSvgProps) => ( + + + +); + +export const SunFilledIcon = ({ + size = 24, + width, + height, + ...props +}: IconSvgProps) => ( + + + + + + +); + +export const HeartFilledIcon = ({ + size = 24, + width, + height, + ...props +}: IconSvgProps) => ( + + + +); + +export const SearchIcon = (props: IconSvgProps) => ( + + + + +); diff --git a/lexikon/src/shared/ui/markdown/MDXPreview.tsx b/lexikon/src/shared/ui/markdown/MDXPreview.tsx new file mode 100644 index 0000000..ecb279b --- /dev/null +++ b/lexikon/src/shared/ui/markdown/MDXPreview.tsx @@ -0,0 +1,38 @@ +"use client"; + +import React, { useMemo } from "react"; +import Markdown from "react-markdown"; +import rehypeKatex from "rehype-katex"; +import remarkGfm from "remark-gfm"; +import remarkMath from "remark-math"; + +import "katex/dist/katex.min.css"; +import { mdxComponents } from "shared/ui/markdown/mdxComponents"; +import { preprocessMath } from "shared/utils/markdown"; +import { cn } from "shared/utils/tailwind"; + +interface MDXPreviewProps extends React.HTMLAttributes { + content: string; + className?: string; +} + +export default function MDXPreview({ + content, + className, + ...props +}: MDXPreviewProps) { + // wrap math blocks properly for parser + const text = useMemo(() => preprocessMath(content), [content]); + + return ( +
+ + {text} + +
+ ); +} diff --git a/lexikon/src/shared/ui/markdown/mdxComponents.tsx b/lexikon/src/shared/ui/markdown/mdxComponents.tsx new file mode 100644 index 0000000..506dc4c --- /dev/null +++ b/lexikon/src/shared/ui/markdown/mdxComponents.tsx @@ -0,0 +1,158 @@ +// filepath: src/global/lib/markdownComponents.tsx +"use client"; + +import React from "react"; +import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; + +// Mapping MDX elements to styled components +export const mdxComponents = { + h1: ({ children, ...props }: React.HTMLAttributes) => ( +

+ {children} +

+ ), + h2: ({ children, ...props }: React.HTMLAttributes) => ( +

+ {children} +

+ ), + h3: ({ children, ...props }: React.HTMLAttributes) => ( +

+ {children} +

+ ), + p: ({ children, ...props }: React.HTMLAttributes) => ( +

+ {children} +

+ ), + a: ({ + children, + href, + ...props + }: React.AnchorHTMLAttributes) => ( + + {children || href} + + ), + ul: ({ children, ...props }: React.HTMLAttributes) => ( +
    + {children} +
+ ), + ol: ({ children, ...props }: React.HTMLAttributes) => ( +
    + {children} +
+ ), + li: ({ children, ...props }: React.LiHTMLAttributes) => ( +
  • + {children} +
  • + ), + blockquote: ({ + children, + ...props + }: React.HTMLAttributes) => ( +
    + {children} +
    + ), + hr: (props: React.HTMLAttributes) => ( +
    + ), + img: ({ alt, src, ...props }: React.ImgHTMLAttributes) => ( + {alt + ), + table: ({ children, ...props }: React.HTMLAttributes) => ( +
    + + {children} +
    +
    + ), + thead: ({ + children, + ...props + }: React.HTMLAttributes) => ( + + {children} + + ), + tbody: ({ + children, + ...props + }: React.HTMLAttributes) => ( + + {children} + + ), + th: ({ + children, + ...props + }: React.ThHTMLAttributes) => ( + + {children || "\u00A0"} + + ), + td: ({ + children, + ...props + }: React.TdHTMLAttributes) => ( + + {children || "\u00A0"} + + ), + code: ({ inline, className, children, ...props }: any) => { + const match = /language-(\w+)/.exec(className || ""); + + if (!inline && match) { + return ( + + {String(children).replace(/\n$/, "")} + + ); + } + + return ( + + {children} + + ); + }, + pre: ({ children, ...props }: React.HTMLAttributes) => ( +
    +      {children}
    +    
    + ), +}; diff --git a/lexikon/src/shared/ui/primitives/ConfirmModal.tsx b/lexikon/src/shared/ui/primitives/ConfirmModal.tsx new file mode 100644 index 0000000..5459964 --- /dev/null +++ b/lexikon/src/shared/ui/primitives/ConfirmModal.tsx @@ -0,0 +1,89 @@ +"use client"; + +import React from "react"; +import { + Modal, + ModalContent, + ModalHeader, + ModalBody, + ModalFooter, + Button, + ModalProps, +} from "@heroui/react"; + +// Extend ModalProps to include standard modal control props like isOpen, onOpenChange +interface ConfirmModalProps extends Omit { + title: string; + children: React.ReactNode; // Message content + confirmText?: string; + cancelText?: string; + onConfirm: () => void | Promise; + isConfirmLoading?: boolean; + confirmButtonColor?: "primary" | "secondary" | "success" | "warning" | "danger" | "default"; +} + +/** + * A reusable modal component for confirming actions. + * Uses useDisclosure hook for state management. + * Example: + * const { isOpen, onOpen, onOpenChange } = useDisclosure(); + * // ... + * + * + * Are you sure you want to delete this item? + * + */ +export default function ConfirmModal({ + isOpen, + onOpenChange, + title, + children, + confirmText = "Confirm", + cancelText = "Cancel", + onConfirm, + isConfirmLoading = false, + confirmButtonColor = "primary", + ...modalProps // Pass remaining ModalProps like size, backdrop, etc. +}: ConfirmModalProps) { + const handleConfirmClick = async () => { + await onConfirm(); + // Optionally close modal after confirm action completes + // Or let the caller manage closing based on success/failure + // For simplicity, we close here. Caller can reopen on error if needed. + if (onOpenChange) { + onOpenChange(false); + } + }; + + return ( + + + {( + onClose // Use function child to get onClose + ) => ( + <> + {title} + {children} + + + + + + )} + + + ); +} diff --git a/lexikon/src/shared/ui/primitives/IconButton.tsx b/lexikon/src/shared/ui/primitives/IconButton.tsx new file mode 100644 index 0000000..6fb8691 --- /dev/null +++ b/lexikon/src/shared/ui/primitives/IconButton.tsx @@ -0,0 +1,39 @@ +import { Button } from "@heroui/button"; +import { Spinner } from "@heroui/react"; +import { LucideIcon } from "lucide-react"; + +interface IconButtonProps { + onClick: () => void; + disabled?: boolean; + icon: LucideIcon; + color?: "primary" | "secondary" | "success" | "warning" | "danger"; + busy?: boolean; +} + +const IconButton = ({ + onClick, + disabled, + icon, + color, + busy = false, +}: IconButtonProps) => { + const RenderedIcon = icon; + return ( + + ); +}; + +export default IconButton; diff --git a/lexikon/src/shared/ui/themeSwitch.tsx b/lexikon/src/shared/ui/themeSwitch.tsx new file mode 100644 index 0000000..931a813 --- /dev/null +++ b/lexikon/src/shared/ui/themeSwitch.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { FC } from "react"; +import { SwitchProps, useSwitch } from "@heroui/switch"; +import { useTheme } from "next-themes"; +import { useIsSSR } from "@react-aria/ssr"; +import clsx from "clsx"; +import { Moon, Sun } from "lucide-react"; +import { Button } from "@heroui/button"; + +export interface ThemeSwitchProps { + className?: string; + classNames?: SwitchProps["classNames"]; +} + +export const ThemeSwitch: FC = ({ + className, + classNames, +}) => { + const { theme, setTheme } = useTheme(); + const isSSR = useIsSSR(); + + const onChange = () => { + theme === "light" ? setTheme("dark") : setTheme("light"); + }; + + const { + Component, + slots, + isSelected, + getBaseProps, + getInputProps, + getWrapperProps, + } = useSwitch({ + isSelected: theme === "light" || isSSR, + onChange, + }); + + // Explicitly type Component as any to avoid type errors + const SwitchComponent = Component as any; + + const wrapperProps = getWrapperProps(); + const { "aria-hidden": _removed, ...cleanedWrapperProps } = wrapperProps; + + return ( + <> + + +
    + +
    + + ); +}; diff --git a/lexikon/src/shared/utils/markdown.ts b/lexikon/src/shared/utils/markdown.ts new file mode 100644 index 0000000..dc74511 --- /dev/null +++ b/lexikon/src/shared/utils/markdown.ts @@ -0,0 +1,12 @@ +// filepath: src/global/lib/markdownUtils.ts + +/** + * Ensure block math sections are wrapped with newlines for proper parsing + */ +export function preprocessMath(content: string): string { + return content.replace(/\$\$(.*?)\$\$/gs, (match, p1) => + match.startsWith("$$\n") || match.endsWith("\n$$") + ? match + : `$$\n${p1}\n$$`, + ); +} diff --git a/lexikon/src/shared/utils/sequenceValidator.ts b/lexikon/src/shared/utils/sequenceValidator.ts new file mode 100644 index 0000000..3f5a42e --- /dev/null +++ b/lexikon/src/shared/utils/sequenceValidator.ts @@ -0,0 +1,112 @@ +// Worker sequence validation +export interface WorkerMeta { + name: string; + input: string; + output: string; +} + +export interface SequenceValidationResult { + isValid: boolean; + sequence: WorkerMeta[]; + error?: string; +} + +/** + * Validates and builds a sequence of workers such that each worker's output matches the next worker's input. + * Returns the ordered sequence if valid, or an error message if not. + */ +export function validateWorkerSequence(workers: WorkerMeta[]): SequenceValidationResult { + if (!workers.length) { + return { isValid: false, sequence: [], error: 'No workers provided.' }; + } + + // Map input/output for quick lookup + const inputMap = new Map(); + const outputMap = new Map(); + for (const worker of workers) { + inputMap.set(worker.input, worker); + outputMap.set(worker.output, worker); + } + + // Find the starting worker (whose input is not any other worker's output) + const startWorker = workers.find( + w => !outputMap.has(w.input) + ); + if (!startWorker) { + return { isValid: false, sequence: [], error: 'No valid starting worker found.' }; + } + + // Build the sequence + const sequence: WorkerMeta[] = [startWorker]; + let current = startWorker; + const used = new Set([current.name]); + + while (sequence.length < workers.length) { + const next = workers.find( + w => w.input === current.output && !used.has(w.name) + ); + if (!next) { + break; + } + sequence.push(next); + used.add(next.name); + current = next; + } + + if (sequence.length !== workers.length) { + return { isValid: false, sequence, error: 'Workers cannot be sequenced linearly.' }; + } + + // Validate the chain + for (let i = 0; i < sequence.length - 1; i++) { + if (sequence[i].output !== sequence[i + 1].input) { + return { isValid: false, sequence, error: 'Invalid sequence: output/input mismatch.' }; + } + } + + return { isValid: true, sequence }; +} +/** + * Sequence validator utility + * Validates that a sequence (array) meets certain criteria. + * + * Usage examples: + * isStrictlyIncreasing([1,2,3]) // true + * isStrictlyDecreasing([3,2,1]) // true + * isNonDecreasing([1,2,2,3]) // true + * isNonIncreasing([3,3,2,1]) // true + */ + +export function isStrictlyIncreasing(arr: T[], comparator: (a: T, b: T) => number = defaultComparator): boolean { + for (let i = 1; i < arr.length; i++) { + if (comparator(arr[i - 1], arr[i]) >= 0) return false; + } + return true; +} + +export function isStrictlyDecreasing(arr: T[], comparator: (a: T, b: T) => number = defaultComparator): boolean { + for (let i = 1; i < arr.length; i++) { + if (comparator(arr[i - 1], arr[i]) <= 0) return false; + } + return true; +} + +export function isNonDecreasing(arr: T[], comparator: (a: T, b: T) => number = defaultComparator): boolean { + for (let i = 1; i < arr.length; i++) { + if (comparator(arr[i - 1], arr[i]) > 0) return false; + } + return true; +} + +export function isNonIncreasing(arr: T[], comparator: (a: T, b: T) => number = defaultComparator): boolean { + for (let i = 1; i < arr.length; i++) { + if (comparator(arr[i - 1], arr[i]) < 0) return false; + } + return true; +} + +function defaultComparator(a: T, b: T): number { + if (typeof a === "number" && typeof b === "number") return a - b; + if (typeof a === "string" && typeof b === "string") return a.localeCompare(b); + throw new Error("Default comparator only supports number or string arrays. Provide a custom comparator."); +} diff --git a/lexikon/src/shared/utils/shader.ts b/lexikon/src/shared/utils/shader.ts new file mode 100644 index 0000000..2a5837b --- /dev/null +++ b/lexikon/src/shared/utils/shader.ts @@ -0,0 +1,17 @@ +import fs from "fs"; +import path from "path"; + +/** + * Loads shader file contents at build time + */ +export function loadShaderFile(relativeFilePath: string): string { + try { + const filePath = path.resolve(process.cwd(), relativeFilePath); + + return fs.readFileSync(filePath, "utf8"); + } catch (e) { + console.error(`Error loading shader file ${relativeFilePath}:`, e); + + return ""; // Return empty string as fallback + } +} diff --git a/lexikon/src/shared/utils/tailwind.ts b/lexikon/src/shared/utils/tailwind.ts new file mode 100644 index 0000000..8e96c80 --- /dev/null +++ b/lexikon/src/shared/utils/tailwind.ts @@ -0,0 +1,9 @@ +import { type ClassValue, clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; + +/** + * Combines and merges class names using clsx and tailwind-merge + */ +export function cn(...inputs: ClassValue[]): string { + return twMerge(clsx(inputs)); +} diff --git a/lexikon/tsconfig.json b/lexikon/tsconfig.json new file mode 100644 index 0000000..b884451 --- /dev/null +++ b/lexikon/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "target": "es2018", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "shared/*": ["./src/shared/*"], + "features/*": ["./src/features/*"], + "app/*": ["./src/app/*"], + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules", "_archive", ".next"] +}